Skip to content

Commit

Permalink
try using jonathans rsp testing setup
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwen01 committed Sep 18, 2024
1 parent 587082a commit 38af22b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,15 @@ jobs:
run: |
sp1up
- name: "Set RPC url"
- name: "Set up test fixture"
run: |
echo "ETH_RPC_URL=https://ethereum-rpc.publicnode.com" >> $GITHUB_ENV
git clone https://github.com/succinctlabs/rsp-tests --branch 2024-09-11 --depth 1 ../rsp-tests
cd ../rsp-tests/
docker compose up -d
- name: "Use local test fixture"
run: |
echo "ETH_RPC_URL=http://localhost:9545/main/evm/1" >> $GITHUB_ENV
- name: Run uniswap script
run: |
Expand Down
2 changes: 1 addition & 1 deletion examples/multiplexer/host/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async fn main() -> eyre::Result<()> {
utils::setup_logger();

// Which block transactions are executed on.
let block_number = BlockNumberOrTag::Number(20767554);
let block_number = BlockNumberOrTag::Number(18884864);

// Prepare the host executor.
//
Expand Down
2 changes: 1 addition & 1 deletion examples/uniswap/host/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async fn main() -> eyre::Result<()> {
utils::setup_logger();

// Which block transactions are executed on.
let block_number = BlockNumberOrTag::Latest;
let block_number = BlockNumberOrTag::Number(18884864);

// Prepare the host executor.
//
Expand Down

0 comments on commit 38af22b

Please sign in to comment.