aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-23 01:24:02 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-20 08:23:21 +0800
commitaad829948a7b21d7664a43c1127679b53ae40bdc (patch)
tree9809a49c773d3e7cfbe2bb2c1db926ad0b6810ca /test
parent137b214be471dd690aeadaf0e02b9ad0915d9e84 (diff)
downloaddexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar
dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.gz
dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.bz2
dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.lz
dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.xz
dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.zst
dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.zip
Ensure parameter names match between headers and implementation
Diffstat (limited to 'test')
-rw-r--r--test/ExecutionFramework.h2
-rw-r--r--test/RPCSession.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionFramework.h b/test/ExecutionFramework.h
index ba385dee..e8d8d111 100644
--- a/test/ExecutionFramework.h
+++ b/test/ExecutionFramework.h
@@ -262,7 +262,7 @@ protected:
void sendMessage(bytes const& _data, bool _isCreation, u256 const& _value = 0);
void sendEther(Address const& _to, u256 const& _value);
size_t currentTimestamp();
- size_t blockTimestamp(u256 number);
+ size_t blockTimestamp(u256 _number);
/// @returns the (potentially newly created) _ith address.
Address account(size_t _i);
diff --git a/test/RPCSession.h b/test/RPCSession.h
index 558cb99f..24bed7b1 100644
--- a/test/RPCSession.h
+++ b/test/RPCSession.h
@@ -107,7 +107,7 @@ public:
Json::Value eth_getBlockByNumber(std::string const& _blockNumber, bool _fullObjects);
std::string eth_call(TransactionData const& _td, std::string const& _blockNumber);
TransactionReceipt eth_getTransactionReceipt(std::string const& _transactionHash);
- std::string eth_sendTransaction(TransactionData const& _transactionData);
+ std::string eth_sendTransaction(TransactionData const& _td);
std::string eth_sendTransaction(std::string const& _transaction);
std::string eth_getBalance(std::string const& _address, std::string const& _blockNumber);
std::string eth_getStorageRoot(std::string const& _address, std::string const& _blockNumber);