Ether Transactions – Sending Ether on Testnet via Command Line with Specific Gas Costs

command-linetransactions

enter image description here

as you can see in the above screen capture, I'm trying to send some ethers through the command line.

something slightly confusing is that from this documentation (I'm using geth), it doesn't seem to indicate a place to specify the gas price, transaction fee, etc. why not?

why did this transaction fail?

Best Answer

The sending account is locked. You need to unlock it first. In this example you can use personal.unlockAccount(eth.coinbase)

Related Topic