diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-18 23:10:08 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-18 23:10:08 +0800 |
commit | 60c43d195289e65af2146d8655350b7f7dca66b7 (patch) | |
tree | 7f829945037786ed5bd175bd43e0327314b4522f | |
parent | 7c9bc8517d92cd7fc75e0ea7c3eff16546a82702 (diff) | |
download | dexon-60c43d195289e65af2146d8655350b7f7dca66b7.tar dexon-60c43d195289e65af2146d8655350b7f7dca66b7.tar.gz dexon-60c43d195289e65af2146d8655350b7f7dca66b7.tar.bz2 dexon-60c43d195289e65af2146d8655350b7f7dca66b7.tar.lz dexon-60c43d195289e65af2146d8655350b7f7dca66b7.tar.xz dexon-60c43d195289e65af2146d8655350b7f7dca66b7.tar.zst dexon-60c43d195289e65af2146d8655350b7f7dca66b7.zip |
Remove i2hex
-rw-r--r-- | rpc/api.go | 4 | ||||
-rw-r--r-- | rpc/util.go | 5 |
2 files changed, 2 insertions, 7 deletions
diff --git a/rpc/api.go b/rpc/api.go index 57075bffc..6154a0b28 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -161,7 +161,7 @@ func (self *EthereumApi) NewFilter(args *FilterOptions, reply *interface{}) erro id = self.filterManager.InstallFilter(filter) self.logs[id] = &logFilter{timeout: time.Now()} - *reply = i2hex(id) + *reply = common.ToHex(big.NewInt(int64(id)).Bytes()) return nil } @@ -198,7 +198,7 @@ func (self *EthereumApi) NewFilterString(args *FilterStringArgs, reply *interfac id = self.filterManager.InstallFilter(filter) self.logs[id] = &logFilter{timeout: time.Now()} - *reply = i2hex(id) + *reply = common.ToHex(big.NewInt(int64(id)).Bytes()) return nil } diff --git a/rpc/util.go b/rpc/util.go index 230d0dcf1..3e2792c07 100644 --- a/rpc/util.go +++ b/rpc/util.go @@ -19,7 +19,6 @@ package rpc import ( "encoding/json" "fmt" - "math/big" "reflect" "time" @@ -90,10 +89,6 @@ func UnmarshalRawMessages(b []byte, iface interface{}, number *int64) (err error return nil } -func i2hex(n int) string { - return common.ToHex(big.NewInt(int64(n)).Bytes()) -} - type Log struct { Address string `json:"address"` Topic []string `json:"topic"` |