Skip to content

Commit

Permalink
Update docs/security.md
Browse files Browse the repository at this point in the history
Co-authored-by: Jernej Kos <[email protected]>
  • Loading branch information
aefhm and kostko committed Jan 23, 2024
1 parent 912b355 commit e188ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ contract Secret {
/// @notice Reveals the secret.
function revealSecret() view external returns (bytes memory) {
require(block.number >= _height, "not settled");
require(block.number > _height, "not settled");
// check for recipient
return _secret;
}
Expand Down

0 comments on commit e188ce1

Please sign in to comment.