diff options
author | Marko Simovic <markobarko@gmail.com> | 2014-03-26 13:01:17 +0800 |
---|---|---|
committer | Marko Simovic <markobarko@gmail.com> | 2014-03-26 13:01:17 +0800 |
commit | 913cdd9fd76f1969aa901ec7aec9210599dc4fea (patch) | |
tree | 8e6e15ef382fe7f5effcda344b8f13a59234627e /TestHelper.h | |
parent | 0dd1c23c32914d9d2fb706c504ddf989e68b4cac (diff) | |
download | dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.tar dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.tar.gz dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.tar.bz2 dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.tar.lz dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.tar.xz dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.tar.zst dexon-solidity-913cdd9fd76f1969aa901ec7aec9210599dc4fea.zip |
Updated to add a simple forking test
Diffstat (limited to 'TestHelper.h')
-rw-r--r-- | TestHelper.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/TestHelper.h b/TestHelper.h new file mode 100644 index 00000000..5860f7fa --- /dev/null +++ b/TestHelper.h @@ -0,0 +1,29 @@ +/* + This file is part of cpp-ethereum. + + cpp-ethereum is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + cpp-ethereum is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>. +*/ +/** @file TestHelper.h + * @author Marko Simovic <markobarko@gmail.com> + * @date 2014 + */ + +#pragma once + +namespace eth +{ + +void mine(Client& c, int numBlocks); + +} |