diff --git a/solidity-by-example.rst b/solidity-by-example.rst index e35924a..31f0a70 100644 --- a/solidity-by-example.rst +++ b/solidity-by-example.rst @@ -232,7 +232,7 @@ // 如果出价不够高,返还你的钱 require( - msg.value > highestBid, + msg.value <= highestBid, "There already is a higher bid." );