Commit 856b9e9c authored by Péter Szilágyi's avatar Péter Szilágyi

Merge pull request #2183 from bas-vk/issue2180

eth_sendTransaction, error not reported
parents 707ac67b 5fb68f4b
......@@ -999,7 +999,7 @@ func (s *PublicTransactionPoolAPI) SendTransaction(args SendTxArgs) (common.Hash
s.txPool.SetLocal(signedTx)
if err := s.txPool.Add(signedTx); err != nil {
return common.Hash{}, nil
return common.Hash{}, err
}
if contractCreation {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment