アルゴリズムとかオーダーとか

仕事で勉強したことなどをまとめてます

Ethereum-error

EthereumのsendTransaction時のvalidationエラー一覧

truffleを使ってContractをデプロイしようとした時などによく目にするエラーメッセージ insufficient funds for gas * price + value や exceeds block gas limit などのエラーはnodeがtransaction poolに新しくtransactionを追加する際のチェックに通らなか…

Ropstenにつなげた時の exceeds block gas limit エラー

意外に情報が少なくて、解決するのに時間かかったので自分用メモのつもりでブログに残しておきます。 Ropstenのガスリミットは4700000 Ropstenのガスリミットは4700000だそうです。truffle(に限らないのかな?)でgas limitを指定しなかった時のデフォルト…

Error: insufficient funds for gas * price + valueについて

Ethreumのプライベートチェーンノードを立てて送金を試してみたら以下のエラーが発生した。 > eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(5, "ether")}) Error: insufficient funds for gas * price + value at w…