diff options
author | Gav Wood <i@gavwood.com> | 2015-04-04 03:10:15 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-04-04 03:10:15 +0800 |
commit | 80dc6380d027cac39dc52653ce61e42375ae8ea1 (patch) | |
tree | 06b097089a8c0ab631b9c439b9b98e41ddc2cef1 | |
parent | 2ad1be6eee882a20ad78e9ff1e6d9b113b7ffcc8 (diff) | |
download | dexon-solidity-80dc6380d027cac39dc52653ce61e42375ae8ea1.tar.gz dexon-solidity-80dc6380d027cac39dc52653ce61e42375ae8ea1.tar.zst dexon-solidity-80dc6380d027cac39dc52653ce61e42375ae8ea1.zip |
Fixes #1509
-rw-r--r-- | blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blockchain.cpp b/blockchain.cpp index 17e6c358..ffb55da3 100644 --- a/blockchain.cpp +++ b/blockchain.cpp @@ -78,7 +78,7 @@ void doBlockchainTests(json_spirit::mValue& _v, bool _fillin) // construct blockchain TransientDirectory td; - BlockChain bc(rlpGenesisBlock.out(), td.path(), true); + BlockChain bc(rlpGenesisBlock.out(), td.path(), WithExisting::Kill); if (_fillin) { |