Skip to content

Commit

Permalink
Merge pull request #17 from cartridge-gg/snrs-0.9.0
Browse files Browse the repository at this point in the history
chore: bump starknet-rs to 0.9.0
  • Loading branch information
glihm authored Feb 14, 2024
2 parents a30cc79 + 59f9d43 commit 54df2a4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async-trait = "0.1.68"
convert_case = "0.6.0"
serde = { version = "1.0", default-features = false, features = ["alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
starknet = "0.8.0"
starknet = "0.9.0"
thiserror = "1.0"
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.16", features = [ "env-filter", "json" ] }
Expand Down
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 * 2).into())
.max_fee(estimated_fee * FieldElement::TWO)
.send()
.await
.expect("invoke failed");
Expand Down

0 comments on commit 54df2a4

Please sign in to comment.