Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Commit 1b2b58b

Browse files
Update erc721.cairo (#288)
ending the expression since the function is not returning anything
1 parent 1104690 commit 1b2b58b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

listings/applications/nft_dutch_auction/src/erc721.cairo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ mod ERC721 {
222222
////////////////////////////////
223223
fn _set_token_uri(ref self: ContractState, token_id: u256, token_uri: felt252) {
224224
assert(self._exists(token_id), 'ERC721: invalid token ID');
225-
self.token_uri.write(token_id, token_uri)
225+
self.token_uri.write(token_id, token_uri);
226226
}
227227

228228
////////////////////////////////

0 commit comments

Comments
 (0)