My code is below, setting gas to 21000, but I've tried values up to 100000 and nothing works:
eth.sendTransaction({from:eth.coinbase, to:ACCOUNT, value: web3.toWei(30, "ether"), gas:21000})
I've also tried:
eth.sendTransaction({from:eth.coinbase, to:ACCOUNT, value: web3.toWei(30, "ether"), gas:21000, gasPrice:web3.toWei(300, 'gwei')})
Regardless of the gas value I select, I get the error "Exceeds block gas limit"
Any idea how I can get rid of this error?
**This question has been marked as a duplicate of another question, but that question remained unanswered and is pending OP posting their actual code snippet. There aren't helpful answers elsewhere as of yet.