diff options
author | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2017-09-26 23:16:13 +0300 |
---|---|---|
committer | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2017-09-26 23:16:13 +0300 |
commit | e27533f7d108c351f3024541e611457509d3d833 (patch) | |
tree | bae7eb636146303bc8681ddd47fb524c0c68ae20 | |
parent | a8ad68aede64e0d7a65df0737965cf3d1ab891bb (diff) |
[solidity/en] Fixed #2873
-rw-r--r-- | solidity.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidity.html.markdown b/solidity.html.markdown index fc54d6e4..c1f910fd 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -262,7 +262,7 @@ Bank b = Bank({ // or Bank c = Bank(msg.sender, 5); -c.amount = 5; // set to new value +c.balance = 5; // set to new value delete b; // sets to initial value, set all variables in struct to 0, except mappings |