Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: alikim on November 17, 2017, 01:51:17 AM



Title: The network doesn't see a transaction sent by bitcoind
Post by: alikim on November 17, 2017, 01:51:17 AM
I'm running the latest version of bitcoind, blockchain is up-to-date, I execute these commands in cmd:

Code:
xxx\_bcore\bin\bitcoin-cli.exe -conf=xxx\_bcore\bin\bitcoin.conf -datadir=xxx\_bcore\bin\data createrawtransaction [{\"txid\":\"8991...\",\"vout\":1}] {\"1Knm1...\":0.00533400,\"1SLr...\":0.01000800}
Code:
0200000001ca0c9574e...

Code:
xxx\_bcore\bin\bitcoin-cli.exe -conf=xxx\_bcore\bin\bitcoin.conf -datadir=xxx\_bcore\bin\data signrawtransaction 0200000001ca0c9574e... [] [\"L3ZeW...\"] ALL
Code:
{
  "hex": "0200000001ca0c9574e...",
  "complete": true
}

Code:
xxx\_bcore\bin\bitcoin-cli.exe -conf=xxx\_bcore\bin\bitcoin.conf -datadir=xxx\_bcore\bin\data sendrawtransaction 0200000001ca0c9574e...
Code:
4e997e53...

When I go to blockchain.info I don't see neither the transaction id nor any change in the balances of the addresses involved.

What might be the reason for this not working? Thank you!


Title: Re: The network doesn't see a transaction sent by bitcoind
Post by: HCP on November 17, 2017, 04:19:10 AM
blockchain.info is not "The Network"™ ::)

Have you tried looking for your transactionID on any other block explorers?
https://blockexplorer.com/
https://live.blockcypher.com/btc/
https://www.blocktrail.com/BTC
https://btc.com/
https://chain.so/
https://blockchair.com/

If it isn't showing on ANY of those... then chances are your transaction is not being relayed... try "pushing" the raw hex using some of the "broadcast" tools listed here: https://en.bitcoin.it/wiki/Transaction_broadcasting

If there is something wrong with the transaction, hopefully those broadcast tools will give you some more insight or an error code or something.




Title: Re: The network doesn't see a transaction sent by bitcoind
Post by: alikim on November 17, 2017, 07:34:19 AM
Thank you!