diff options
-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 4ed474df..ab3f375e 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -612,7 +612,7 @@ Safe Remote Purchase // block the refund - the withdraw pattern should be used. buyer.transfer(value); - seller.transfer(this.balance)); + seller.transfer(this.balance); } } |