forked from cerc-io/plugeth
Fixes for balance
This commit is contained in:
parent
7e13ee602e
commit
0f3bf7ef4d
@ -36,7 +36,7 @@ func (api *EthereumApi) xethAtStateNum(num int64) *xeth.XEth {
|
||||
|
||||
func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
|
||||
// Spec at https://github.com/ethereum/wiki/wiki/JSON-RPC
|
||||
rpclogger.Debugf("%s %s", req.Method, req.Params)
|
||||
rpclogger.Infof("%s %s", req.Method, req.Params)
|
||||
|
||||
switch req.Method {
|
||||
case "web3_sha3":
|
||||
@ -80,8 +80,9 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
|
||||
return err
|
||||
}
|
||||
|
||||
v := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Balance()
|
||||
*reply = common.ToHex(v.Bytes())
|
||||
*reply = api.xethAtStateNum(args.BlockNumber).BalanceAt(args.Address)
|
||||
//v := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Balance()
|
||||
//*reply = common.ToHex(v.Bytes())
|
||||
case "eth_getStorage", "eth_storageAt":
|
||||
args := new(GetStorageArgs)
|
||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||
|
@ -312,7 +312,7 @@ func (self *XEth) StorageAt(addr, storageAddr string) string {
|
||||
}
|
||||
|
||||
func (self *XEth) BalanceAt(addr string) string {
|
||||
return self.State().state.GetBalance(common.HexToAddress(addr)).String()
|
||||
return common.ToHex(self.State().state.GetBalance(common.HexToAddress(addr)).Bytes())
|
||||
}
|
||||
|
||||
func (self *XEth) TxCountAt(address string) int {
|
||||
|
Loading…
Reference in New Issue
Block a user