Skip to content

Commit

Permalink
tests fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gfusee committed Jul 13, 2023
1 parent 39d6bb9 commit cee58db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl MultisigInteract {
return;
}

self.collection_token_identifier = result.unwrap();
self.collection_token_identifier = result.unwrap().unwrap();
println!(
"collection token identifier: {}",
self.collection_token_identifier
Expand Down Expand Up @@ -180,7 +180,7 @@ impl MultisigInteract {
return;
}

self.collection_token_identifier = result.unwrap();
self.collection_token_identifier = result.unwrap().unwrap();
println!(
"collection token identifier: {}",
self.collection_token_identifier
Expand Down

0 comments on commit cee58db

Please sign in to comment.