rpc: to in Call no longer required. Fixed eth_estimateGas

This commit is contained in:
Jeffrey Wilcke
2015-07-27 13:44:37 +02:00
parent fa286688ab
commit d261c3f455
3 changed files with 4 additions and 8 deletions

View File

@ -322,7 +322,7 @@ func (self *ethApi) EstimateGas(req *shared.Request) (interface{}, error) {
if len(gas) == 0 {
return newHexNum(0), nil
} else {
return newHexNum(gas), nil
return newHexNum(common.String2Big(gas)), err
}
}