mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
Merge branch 'develop' of https://github.com/kobigurk/go-ethereum into kobigurk-develop
Conflicts: rpc/api.go
This commit is contained in:
commit
779a51c047
@ -106,7 +106,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
*reply = api.xethAtStateNum(args.BlockNumber).TxCountAt(args.Address)
|
count := api.xethAtStateNum(args.BlockNumber).TxCountAt(args.Address)
|
||||||
|
*reply = common.ToHex(big.NewInt(int64(count)).Bytes())
|
||||||
case "eth_getBlockTransactionCountByHash":
|
case "eth_getBlockTransactionCountByHash":
|
||||||
args := new(GetBlockByHashArgs)
|
args := new(GetBlockByHashArgs)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user