good morning!!!!

Skip to content
Snippets Groups Projects
Commit 3b20603e authored by Taylor Gerring's avatar Taylor Gerring
Browse files

Merge branch 'kobigurk-develop' into develop

parents b9ca5eef 779a51c0
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) 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":
args := new(GetBlockByHashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment