diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-16 16:38:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 16:38:16 +0800 |
commit | 98656423be9c22af44b788f0d273195788218416 (patch) | |
tree | 4a42e70db733cfec80131b87ec0215a5dcccf45e | |
parent | 31e56f9f9976cee44f000226318dca566f0f0b79 (diff) | |
parent | 7c1672f36ec3ae74884b7ba5be0651abdce23589 (diff) | |
download | dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.gz dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.bz2 dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.lz dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.xz dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.zst dexon-solidity-98656423be9c22af44b788f0d273195788218416.zip |
Merge pull request #4511 from MichalZalecki/patch-1
Fix typo in the function name
-rw-r--r-- | docs/solidity-by-example.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index b1985426..cd281aad 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -1035,7 +1035,7 @@ The full contract /// if the timeout is reached without the recipient closing the channel, /// then the Ether is released back to the sender. - function clainTimeout() public { + function claimTimeout() public { require(now >= expiration); selfdestruct(sender); } |