Skip to content

Commit f632822

Browse files
author
Zoran Cvetkov
committed
fix CI
1 parent 8093f74 commit f632822

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
- name: Install Foundry
154154
uses: foundry-rs/foundry-toolchain@v1
155155
- name: Start anvil
156-
run: anvil --gas-limit 100000000000 --base-fee 1 --block-time 2 --port 3021 &
156+
run: anvil --gas-limit 100000000000 --base-fee 1 --block-time 2 --timestamp 1743944919 --port 3021 &
157157

158158
- name: Install graph CLI
159159
run: curl -sSL http://cli.thegraph.com/install.sh | sudo bash

tests/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
image: ghcr.io/foundry-rs/foundry:stable
2424
ports:
2525
- '3021:8545'
26-
command: "'anvil --host 0.0.0.0 --gas-limit 100000000000 --base-fee 1 --block-time 5 --timestamp 1743944919 --mnemonic \"test test test test test test test test test test test junk\"'"
26+
command: "'anvil --host 0.0.0.0 --gas-limit 100000000000 --base-fee 1 --block-time 2 --timestamp 1743944919 --mnemonic \"test test test test test test test test test test test junk\"'"
2727

2828
# graph-node ports:
2929
# json-rpc: 8020

tests/tests/integration_tests.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -831,15 +831,15 @@ async fn test_subgraph_grafting(ctx: TestContext) -> anyhow::Result<()> {
831831
assert!(subgraph.healthy);
832832

833833
let block_hashes: Vec<&str> = vec![
834-
"fc66417a289a112cf2078d6506bce89046a21f121b367906caec3500f4f43285",
835-
"b6a1582c94b5cfab23d203dfbae7eda7f5dc53fb5cdf40b377c0816f10ff8860",
836-
"655f22340c650eb2089ee09773789f3f00bf7e359516d09736b58bb951e4f92c",
834+
"384c705d4d1933ae8ba89026f016f09854057a267e1143e47bb7511d772a35d4",
835+
"b90423eead33404dae0684169d35edd494b36802b721fb8de0bb8bc036c10480",
836+
"2a6c4b65d659e0485371a93bc1ac0f0d7bc0f25a454b5f23a842335fea0638d5",
837837
];
838838

839839
let pois: Vec<&str> = vec![
840-
"0x34b294b9663a79c454f7acf1f806972278893ffe0deea5c16da35ae1c6e13de9",
841-
"0x77659812fc4f75102a9d712cf2f36050cd9263c83a753daf7ab5ddcbe6a26272",
842-
"0x67a66fdb886ad476703b37fec1d0bffaf9bd6d20f41287aee18afa5910f9b400",
840+
"0x4f3e32c290fd6aa3613a0bbd0cc4367ae082036086cf75f292f8eaf798648a27",
841+
"0x6053124bc1042dfc9c153b49c626f11860a1bc34d0fde384526a2dbed909d242",
842+
"0xca535e3a5be9b93012f6173b33cf9c053cac8028dda9c398b619b67f53a9e1a4",
843843
];
844844

845845
for i in 1..4 {

0 commit comments

Comments
 (0)