Skip to content

Commit

Permalink
test(wallet-integration): define gas_limit & proof_size
Browse files Browse the repository at this point in the history
  • Loading branch information
al3mart authored and peterwht committed Dec 16, 2024
1 parent a3993cc commit 86b5a61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/pop-cli/src/commands/up/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,8 @@ mod tests {
constructor: "new".to_string(),
args: vec!["false".to_string()],
value: "0".to_string(),
gas_limit: None,
proof_size: None,
gas_limit: Some(200_000_000),
proof_size: Some(30_000),
salt: None,
url: Url::parse(&localhost_url).expect("given url is valid"),
suri: "//Alice".to_string(),
Expand All @@ -623,7 +623,7 @@ mod tests {
assert!(!retrieved_call_data.is_empty());

// Craft instantiate call data.
let weight = Weight::from_parts(0, 0);
let weight = Weight::from_parts(200_000_000, 30_000);
let expected_call_data =
get_instantiate_payload(set_up_deployment(up_contract_opts.into()).await?, weight)
.await?;
Expand Down

0 comments on commit 86b5a61

Please sign in to comment.