Skip to content

Commit 0940c8b

Browse files
committed
fix(coprocessor): host-listener, dependency chain
1 parent 37d3593 commit 0940c8b

File tree

12 files changed

+743
-92
lines changed

12 files changed

+743
-92
lines changed

.github/workflows/test-suite-e2e-operators-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ jobs:
101101
username: ${{ github.actor }}
102102
password: ${{ secrets.GHCR_READ_TOKEN }}
103103

104+
- name: Login to Chainguard Registry
105+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
106+
with:
107+
registry: cgr.dev
108+
username: ${{ secrets.CGR_USERNAME }}
109+
password: ${{ secrets.CGR_PASSWORD }}
110+
104111
- name: Deploy fhevm Stack
105112
working-directory: test-suite/fhevm
106113
env:

coprocessor/fhevm-engine/.sqlx/query-e83798919f9929634fec3ed1d1ed3ec8891fbb77ce3b9831054589567a0e084a.json

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

coprocessor/fhevm-engine/Cargo.lock

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

coprocessor/fhevm-engine/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ tonic = { version = "0.12.3", features = ["server"] }
9191
tonic-build = "0.12.3"
9292
tracing = "0.1.41"
9393
tracing-subscriber = { version = "0.3.20", features = ["fmt", "json"] }
94+
tracing-test = "0.2.5"
9495
humantime = "2.2.0"
9596
bytesize = "2.0.1"
9697
http = "1.3.1"

coprocessor/fhevm-engine/host-listener/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ alloy = { workspace = true, features = ["node-bindings"] }
4343
anyhow = { workspace = true }
4444
serial_test = { workspace = true }
4545
test-harness = { path = "../test-harness" }
46+
tracing-test = { workspace = true }
4647

4748
[build-dependencies]
4849
foundry-compilers = { workspace = true }

coprocessor/fhevm-engine/host-listener/src/cmd/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pub struct Args {
101101

102102
#[arg(
103103
long,
104-
default_value = "128",
104+
default_value = "10000",
105105
help = "Pre-computation dependence chain cache size"
106106
)]
107107
pub dependence_cache_size: u16,
@@ -842,6 +842,7 @@ impl InfiniteLogIter {
842842
warn!(
843843
new_block = ?block_logs.summary,
844844
block_time = self.block_time,
845+
nb_logs = block_logs.logs.len(),
845846
"Block timeout, proceed with last block"
846847
);
847848
break block_logs;

0 commit comments

Comments
 (0)