From b6b6f52ec8608e1a694357357c3f1fde669f1e6d Mon Sep 17 00:00:00 2001 From: rjl493456442 Date: Wed, 14 Mar 2018 20:15:30 +0800 Subject: cmd: implement preimage dump and import cmds --- cmd/geth/main.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd/geth/main.go') diff --git a/cmd/geth/main.go b/cmd/geth/main.go index f5a3fa941..6e234a704 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -158,6 +158,8 @@ func init() { copydbCommand, removedbCommand, dumpCommand, + preimageDumpCommand, + preimageImportCommand, // See monitorcmd.go: monitorCommand, // See accountcmd.go: -- cgit v1.2.3 From 495bdb0c713ce6deafa51fa25cb7ea66426b6b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Mon, 26 Mar 2018 13:34:21 +0300 Subject: cmd: export preimages in RLP, support GZIP, uniform with block export --- cmd/geth/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/geth/main.go') diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 6e234a704..061384d1b 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -155,11 +155,11 @@ func init() { initCommand, importCommand, exportCommand, + importPreimagesCommand, + exportPreimagesCommand, copydbCommand, removedbCommand, dumpCommand, - preimageDumpCommand, - preimageImportCommand, // See monitorcmd.go: monitorCommand, // See accountcmd.go: -- cgit v1.2.3