Skip to content

Commit

Permalink
fix: unpatch chains (#6320)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Nov 15, 2023
1 parent c9538c0 commit 7769cf0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ alloy-json-abi = "0.4.1"
alloy-sol-types = "0.4.1"
syn-solidity = "0.4.1"

alloy-chains = "0.1.0"
alloy-chains = "0.1.2"
alloy-rlp = "0.3.3"
solang-parser = "=0.3.3"

Expand Down Expand Up @@ -201,8 +201,6 @@ ethers-middleware = { git = "https://github.com/gakonst/ethers-rs", rev = "0543e
ethers-etherscan = { git = "https://github.com/gakonst/ethers-rs", rev = "0543e1ccbaab70996ab21b5ceeff2fe599728b74" }
ethers-solc = { git = "https://github.com/gakonst/ethers-rs", rev = "0543e1ccbaab70996ab21b5ceeff2fe599728b74" }

alloy-chains = { git = "https://github.com/alloy-rs/chains/", branch = "dani/fix-serde" }

alloy-dyn-abi = { git = "https://github.com/alloy-rs/core/" }
alloy-primitives = { git = "https://github.com/alloy-rs/core/" }
alloy-json-abi = { git = "https://github.com/alloy-rs/core/" }
Expand Down
2 changes: 1 addition & 1 deletion testdata/repros/Issue4640.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ contract Issue4640Test is DSTest {

function testArbitrumBlockNumber() public {
// <https://arbiscan.io/block/75219831>
vm.createSelectFork("https://rpc.ankr.com/arbitrum", 75219831);
vm.createSelectFork("https://arb-mainnet.alchemyapi.io/v2/Lc7oIGYeL_QvInzI0Wiu_pOZZDEKBrdf", 75219831);
// L1 block number
assertEq(block.number, 16939475);
}
Expand Down

0 comments on commit 7769cf0

Please sign in to comment.