diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-03-26 19:45:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-26 19:45:01 +0800 |
commit | dd708c1636e7925249e8d61c3f5363563c59c4b0 (patch) | |
tree | 69f4b9326d3615ae61d1bdcf113f48c63360fb04 /cmd/geth/main.go | |
parent | 7c131f4d6d936e3102b3908b6797ca3521addf36 (diff) | |
parent | 495bdb0c713ce6deafa51fa25cb7ea66426b6b2e (diff) | |
download | dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.tar dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.tar.gz dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.tar.bz2 dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.tar.lz dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.tar.xz dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.tar.zst dexon-dd708c1636e7925249e8d61c3f5363563c59c4b0.zip |
Merge pull request #16319 from rjl493456442/dump_preimages
cmd: implement preimage dump and import cmds
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index f5a3fa941..061384d1b 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -155,6 +155,8 @@ func init() { initCommand, importCommand, exportCommand, + importPreimagesCommand, + exportPreimagesCommand, copydbCommand, removedbCommand, dumpCommand, |