Skip to content

Commit e99aaf7

Browse files
authored
Updated blind-auction
changed memory to calldata for the function reveal in line number 277
1 parent 054a506 commit e99aaf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/examples/blind-auction.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ invalid bids.
275275
/// correctly blinded invalid bids and for all bids except for
276276
/// the totally highest.
277277
function reveal(
278-
uint[] memory _values,
279-
bool[] memory _fake,
280-
bytes32[] memory _secret
278+
uint[] calldata _values,
279+
bool[] calldata _fake,
280+
bytes32[] calldata _secret
281281
)
282282
external
283283
onlyAfter(biddingEnd)

0 commit comments

Comments
 (0)