Skip to content

Commit 832c2ac

Browse files
committed
fix: merge conflicts
2 parents 0ab8905 + d381a8a commit 832c2ac

File tree

19 files changed

+377
-206
lines changed

19 files changed

+377
-206
lines changed

Cargo.lock

Lines changed: 42 additions & 122 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ foundry-compilers.opt-level = 3
9999
serde_json.opt-level = 3
100100
serde.opt-level = 3
101101

102-
solang-parser.opt-level = 3
102+
foundry-solang-parser.opt-level = 3
103103
lalrpop-util.opt-level = 3
104104

105105
solar-ast.opt-level = 3
@@ -191,7 +191,7 @@ foundry-linking = { path = "crates/linking" }
191191
foundry-block-explorers = { version = "0.13.3", default-features = false }
192192
foundry-compilers = { version = "0.14.0", default-features = false }
193193
foundry-fork-db = "0.12"
194-
solang-parser = "=0.3.3"
194+
solang-parser = { version = "=0.3.7", package = "foundry-solang-parser" }
195195
solar-parse = { version = "=0.1.2", default-features = false }
196196
solar-sema = { version = "=0.1.2", default-features = false }
197197

crates/cast/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ impl<P: Provider<AnyNetwork>> Cast<P> {
367367
let block = self
368368
.provider
369369
.get_block(block)
370-
.full()
370+
.kind(full.into())
371371
.await?
372372
.ok_or_else(|| eyre::eyre!("block {:?} not found", block))?;
373373

0 commit comments

Comments
 (0)