For the answer to this comment
Can you give one example of how to do this in cmd as Pieter said :
-txindex on the bitcoind command line
I do an example for my configuration bitcoin core, I using the -txindex
the command for run bitcoin
bitcoind -txindex
The essential bitcoin.conf configurations
##
## bitcoin.conf configuration file. Lines beginning with # are comments.
##
server=1
rpcuser=YOUR_USER
rpcpassword=YOUR_PAS
the process bitcoind with the -txindex is longer because bitcoind indexes all block inside the DB, an example, I used an external HDD and in my cases, the process worked for one day
also when the bitcoind has finished you can run your command, so
bitcoin-cli getrawtransaction 0627052b6f28912f2703066a912ea577f2ce4da4caa5a5fbd8a57286c345c2f2
You will have this result
0100000001186f9f998a5aa6f048e51dd8419a14d8a0f1a8a2836dd734d2804fe65fa35779000000008b483045022100884d142d86652a3f47ba4746ec719bbfbd040a570b1deccbb6498c75c4ae24cb02204b9f039ff08df09cbe9f6addac960298cad530a863ea8f53982c09db8f6e381301410484ecc0d46f1918b30928fa0e4ed99f16a0fb4fde0735e7ade8416ab9fe423cc5412336376789d172787ec3457eee41c04f4938de5cc17b4a10fa336a8d752adfffffffff0260e31600000000001976a914ab68025513c3dbd2f7b92a94e0581f5d50f654e788acd0ef8000000000001976a9147f9b1a7fb68d60c536c2fd8aeaa53a8f3cc025a888ac00000000
Try to call the command
– vincenzopalazzo – 2019-09-23T16:25:51.743getrawtransactionthis is documentation reference if not work, can you public a minimal example for trying the same command?It says like that: Efe-MacBook-Pro:bitcoin efecini$ bitcoin-cli getrawtransaction 0627052b6f28912f2703066a912ea577f2ce4da4caa5a5fbd8a57286c345c2f2 error code: -5 error message: No such mempool transaction. Use -txindex to enable blockchain transaction queries. Use gettransaction for wallet transactions. – Efe Cini – 2019-09-23T16:51:29.130
with the command getrawtransaction the your code worked follow pieter's instructions – vincenzopalazzo – 2019-09-23T16:57:29.687
I restarted the os and typed bitcoind '-txindex=1' And also add a newline 'txindex=1' in bitcoin.conf.(Also i cant find bitcoin.conf file after i changed it :( ) But stil i get : error code: -5 error message: No such mempool or blockchain transaction. Use gettransaction for wallet transactions. – Efe Cini – 2019-09-23T22:10:21.837
if you run the bitcoind with the --daemon it appare ok but with the -txindex=1 the bitcoin core the blockchain is rescanned so you attend the time for complete the process, it should be the problem. for the bitcoin.conf disappeared, only you can know what dark has happened :) – vincenzopalazzo – 2019-09-23T22:21:38.197
One last thing : Can you give one example how to do this in cmd like Pieter said : -txindex on the bitcoind command line – Efe Cini – 2019-09-23T22:37:49.127
I added an answer – vincenzopalazzo – 2019-09-23T22:51:51.230