diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-08 00:20:05 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-10 21:24:56 +0800 |
commit | 3128ec2ca5d30aaca78aae457642214f3f52e31f (patch) | |
tree | 74ef3c659d3a29db108f1f2e5cdc21b5ac25b33c /test/RPCSession.cpp | |
parent | af8e31b023723bfc6baa224931ef6570cd8d9a32 (diff) | |
download | dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.tar dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.tar.gz dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.tar.bz2 dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.tar.lz dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.tar.xz dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.tar.zst dexon-solidity-3128ec2ca5d30aaca78aae457642214f3f52e31f.zip |
Add blockNumber and blockTimestamp to ExecutionFramework
Diffstat (limited to 'test/RPCSession.cpp')
-rw-r--r-- | test/RPCSession.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/RPCSession.cpp b/test/RPCSession.cpp index b3451528..a58355d0 100644 --- a/test/RPCSession.cpp +++ b/test/RPCSession.cpp @@ -138,6 +138,7 @@ RPCSession::TransactionReceipt RPCSession::eth_getTransactionReceipt(string cons BOOST_REQUIRE(!result.isNull()); receipt.gasUsed = result["gasUsed"].asString(); receipt.contractAddress = result["contractAddress"].asString(); + receipt.blockNumber = result["blockNumber"].asString(); for (auto const& log: result["logs"]) { LogEntry entry; |