Skip to content

Commit

Permalink
fix: cli#204
Browse files Browse the repository at this point in the history
  • Loading branch information
julio4 committed Jun 9, 2024
1 parent 89d43be commit 48335cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions listings/applications/erc20/src/lib.cairo
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
pub mod token;

#[cfg(test)]
mod tests;
2 changes: 1 addition & 1 deletion listings/applications/erc20/src/token.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ mod tests {
fn test_deploy_when_recipient_is_address_zero() {
let recipient: ContractAddress = Zero::zero();

let (contract_address, _) = deploy_syscall(
let (_contract_address, _) = deploy_syscall(
erc20::TEST_CLASS_HASH.try_into().unwrap(),
recipient.into(),
array![recipient.into(), token_name, decimals.into(), initial_supply, symbols].span(),
Expand Down

0 comments on commit 48335cb

Please sign in to comment.