diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-09-26 16:20:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-26 16:20:47 +0800 |
commit | 2e14aff80f294a34f6b28f0149b94fa7b9d3bf81 (patch) | |
tree | 17d1f3abefabfd7f8cb9149994a4788d2c0f08bc /internal | |
parent | e859f3696783ec75d9bb39c0c66eda3a88cea8c6 (diff) | |
parent | a59a93f476434f2805c8fd3e10bf1b2f579b078f (diff) | |
download | dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.gz dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.bz2 dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.lz dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.xz dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.zst dexon-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.zip |
Merge pull request #3037 from karalabe/state-caching
State caching
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 0b1384f58..6480085dd 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1280,8 +1280,8 @@ func (api *PrivateDebugAPI) ChaindbProperty(property string) (string, error) { } // SetHead rewinds the head of the blockchain to a previous block. -func (api *PrivateDebugAPI) SetHead(number uint64) { - api.b.SetHead(number) +func (api *PrivateDebugAPI) SetHead(number rpc.HexNumber) { + api.b.SetHead(uint64(number.Int64())) } // PublicNetAPI offers network related RPC methods |