Skip to content

Commit

Permalink
Fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
udose-everyday committed Oct 16, 2024
1 parent 0b52a41 commit 0c57233
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion contracts/multisig/src/tests/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ pub const DAY_AS_TIMESTAMP: u64 = 86_400u64;
pub const TWO_WEEKS_EXPIRATION_DATE: u64 = SEVEN_DAYS_EXPIRATION_DATE * 2;

pub fn deploy_token_contract<'a>(env: &Env, admin: &Address) -> token_contract::Client<'a> {
token_contract::Client::new(env, &env.register_stellar_asset_contract(admin.clone()))
token_contract::Client::new(
env,
&env.register_stellar_asset_contract_v2(admin.clone())
.address(),
)
}

pub fn initialize_multisig_contract<'a>(
Expand Down

0 comments on commit 0c57233

Please sign in to comment.