Skip to content

Commit

Permalink
++
Browse files Browse the repository at this point in the history
  • Loading branch information
qalisander committed May 20, 2024
1 parent 2abc5a7 commit 3d42455
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion integration/src/erc20.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ async fn mint() -> Result<()> {
let Infrastructure { alice, bob } = Infrastructure::<Erc20>::new().await?;
// TODO: have a nicer support for custom constructors
let _ = alice
.constructor("MyErc20".to_string(), "MRC".to_string(), U256::from(10), false)
.constructor(
"MyErc20".to_string(),
"MRC".to_string(),
U256::from(10),
false,
)
.ctx_send()
.await?;
let one = U256::from(1);
Expand Down

0 comments on commit 3d42455

Please sign in to comment.