aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts
diff options
context:
space:
mode:
authorCryptomental <cryptomental.com@gmail.com>2018-07-10 15:18:19 +0800
committerCryptomental <cryptomental.com@gmail.com>2018-07-11 04:57:59 +0800
commit4116704442aff035acb5b707c6b211ac1f5524fe (patch)
tree6813ae8d78ecfa630cc85fdca09d1534d627c6c5 /test/contracts
parenteb92d5f760995aef4c79fcaa3f8c2437718ffc7f (diff)
downloaddexon-solidity-4116704442aff035acb5b707c6b211ac1f5524fe.tar.gz
dexon-solidity-4116704442aff035acb5b707c6b211ac1f5524fe.tar.zst
dexon-solidity-4116704442aff035acb5b707c6b211ac1f5524fe.zip
test: Fix typos.
Fix typos using codespell. Refs: #4442
Diffstat (limited to 'test/contracts')
-rw-r--r--test/contracts/Wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp
index fb104300..b3a096a3 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.