Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Feb 14, 2024
1 parent 9b93328 commit b12f00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simple_get_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async fn other_func<A: ConnectedAccount + Sync + 'static>(contract: Arc<MyContra

// Use the estimated fees as a base.
let _tx_res = set_b
.max_fee((estimated_fee * FieldElement::TWO).into())
.max_fee(estimated_fee * FieldElement::TWO)
.send()
.await
.expect("invoke failed");
Expand Down

0 comments on commit b12f00a

Please sign in to comment.