diff options
author | chriseth <c@ethdev.com> | 2016-06-13 23:10:58 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-06-29 05:18:54 +0800 |
commit | 966709b7d7ee70cfc550923e22e17a22556609a4 (patch) | |
tree | 191798580608041aedbfc5f97c30a8a4253e3dc0 /test/IPCSocket.h | |
parent | 603bad34f9ea24a5a202ae7844549171c10c0ea2 (diff) | |
download | dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.tar dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.tar.gz dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.tar.bz2 dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.tar.lz dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.tar.xz dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.tar.zst dexon-solidity-966709b7d7ee70cfc550923e22e17a22556609a4.zip |
logs
Diffstat (limited to 'test/IPCSocket.h')
-rw-r--r-- | test/IPCSocket.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/IPCSocket.h b/test/IPCSocket.h index 9b4ab73e..bc641e88 100644 --- a/test/IPCSocket.h +++ b/test/IPCSocket.h @@ -59,10 +59,17 @@ public: std::string toJson() const; }; + struct LogEntry { + std::string address; + std::vector<std::string> topics; + std::string data; + }; + struct TransactionReceipt { std::string gasUsed; std::string contractAddress; + std::vector<LogEntry> logEntries; }; static RPCSession& instance(std::string const& _path); |