diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-07-16 18:23:06 +0800 |
---|---|---|
committer | Erik Kundt <bitshift@posteo.org> | 2018-07-16 20:51:46 +0800 |
commit | ed2aa3b8694f253edff8c0a4acefd4ba74bbd859 (patch) | |
tree | 7eb6a360a07db75166459ae5160fc350109329ac /test/contracts/Wallet.cpp | |
parent | 70c58b48864495704b060842af624f2d7a43118a (diff) | |
download | dexon-solidity-ed2aa3b8694f253edff8c0a4acefd4ba74bbd859.tar.gz dexon-solidity-ed2aa3b8694f253edff8c0a4acefd4ba74bbd859.tar.zst dexon-solidity-ed2aa3b8694f253edff8c0a4acefd4ba74bbd859.zip |
Fixes end-to-end tests.
Diffstat (limited to 'test/contracts/Wallet.cpp')
-rw-r--r-- | test/contracts/Wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp index e22d6646..dc949063 100644 --- a/test/contracts/Wallet.cpp +++ b/test/contracts/Wallet.cpp @@ -385,7 +385,7 @@ contract Wallet is multisig, multiowned, daylimit { emit Deposit(msg.sender, msg.value); } - // Outside-visible transact entry point. Executes transacion immediately if below daily spend limit. + // Outside-visible transact entry point. Executes transaction immediately if below daily spend limit. // If not, goes into multisig process. We provide a hash on return to allow the sender to provide // shortcuts for the other confirmations (allowing them to avoid replicating the _to, _value // and _data arguments). They still get the option of using them if they want, anyways. |