diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-10 19:39:59 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-10 19:39:59 +0800 |
commit | 53f8f297449e2d53154a4ee7f71662d7c300ce77 (patch) | |
tree | 06ecea60f439be55b758b52ec318c90e01a42b5c /cmd/utils/cmd.go | |
parent | a7538d0020d3a51ab3b25997b3c4f01db87d4c7a (diff) | |
parent | 0542df941f57a75fa7b699089db1d9ae40e4ff71 (diff) | |
download | dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.gz dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.bz2 dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.lz dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.xz dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.zst dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.zip |
Merge branch 'develop' into rpcfrontier
Diffstat (limited to 'cmd/utils/cmd.go')
-rw-r--r-- | cmd/utils/cmd.go | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go index a77c6ad4d..a7e609af7 100644 --- a/cmd/utils/cmd.go +++ b/cmd/utils/cmd.go @@ -35,7 +35,6 @@ import ( "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/rlp" rpchttp "github.com/ethereum/go-ethereum/rpc/http" - "github.com/ethereum/go-ethereum/state" "github.com/ethereum/go-ethereum/xeth" ) @@ -134,6 +133,15 @@ func StartEthereum(ethereum *eth.Ethereum) { }) } +func StartEthereumForTest(ethereum *eth.Ethereum) { + clilogger.Infoln("Starting ", ethereum.Name()) + ethereum.StartForTest() + RegisterInterrupt(func(sig os.Signal) { + ethereum.Stop() + logger.Flush() + }) +} + func KeyTasks(keyManager *crypto.KeyManager, KeyRing string, GenAddr bool, SecretFile string, ExportDir string, NonInteractive bool) { var err error switch { @@ -188,27 +196,8 @@ func FormatTransactionData(data string) []byte { return d } -// Replay block -func BlockDo(ethereum *eth.Ethereum, hash []byte) error { - block := ethereum.ChainManager().GetBlock(hash) - if block == nil { - return fmt.Errorf("unknown block %x", hash) - } - - parent := ethereum.ChainManager().GetBlock(block.ParentHash()) - - statedb := state.New(parent.Root(), ethereum.StateDb()) - _, err := ethereum.BlockProcessor().TransitionState(statedb, parent, block, true) - if err != nil { - return err - } - - return nil - -} - -func ImportChain(chain *core.ChainManager, fn string) error { - fmt.Printf("importing chain '%s'\n", fn) +func ImportChain(chainmgr *core.ChainManager, fn string) error { + fmt.Printf("importing blockchain '%s'\n", fn) fh, err := os.OpenFile(fn, os.O_RDONLY, os.ModePerm) if err != nil { return err @@ -220,11 +209,24 @@ func ImportChain(chain *core.ChainManager, fn string) error { return err } - chain.Reset() - if err := chain.InsertChain(blocks); err != nil { + chainmgr.Reset() + if err := chainmgr.InsertChain(blocks); err != nil { return err } fmt.Printf("imported %d blocks\n", len(blocks)) return nil } + +func ExportChain(chainmgr *core.ChainManager, fn string) error { + fmt.Printf("exporting blockchain '%s'\n", fn) + + data := chainmgr.Export() + + if err := ethutil.WriteFile(fn, data); err != nil { + return err + } + fmt.Printf("exported blockchain\n") + + return nil +} |