diff options
author | Dimitry <winsvega@mail.ru> | 2016-06-16 21:06:53 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-06-29 05:18:55 +0800 |
commit | 27df4b7e7118795a7d915e2eb88ff578b0ddc814 (patch) | |
tree | 82b2b969b95ccf4e1b75a839bfbf539891f27d73 /test/libsolidity/SolidityExecutionFramework.h | |
parent | 763faf7b0e56cde9845772de5226c9b6f1a5d80a (diff) | |
download | dexon-solidity-27df4b7e7118795a7d915e2eb88ff578b0ddc814.tar.gz dexon-solidity-27df4b7e7118795a7d915e2eb88ff578b0ddc814.tar.zst dexon-solidity-27df4b7e7118795a7d915e2eb88ff578b0ddc814.zip |
parse command line arguments
ipcPath
Diffstat (limited to 'test/libsolidity/SolidityExecutionFramework.h')
-rw-r--r-- | test/libsolidity/SolidityExecutionFramework.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityExecutionFramework.h b/test/libsolidity/SolidityExecutionFramework.h index 42b22c82..d149cda2 100644 --- a/test/libsolidity/SolidityExecutionFramework.h +++ b/test/libsolidity/SolidityExecutionFramework.h @@ -255,6 +255,13 @@ protected: bool storageEmpty(Address const& _addr); bool addressHasCode(Address const& _addr); + struct boostArg + { + boostArg(); + std::string ipcPath; + }; + + boostArg const& getArgs(); RPCSession& m_rpc; struct LogEntry |