Merge pull request #4511 from MichalZalecki/patch-1

Fix typo in the function name
This commit is contained in:
Alex Beregszaszi
2018-07-16 09:38:16 +01:00
committed by GitHub
+1 -1
View File
@@ -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);
}