From 4c348f89b84e1ca92d71b029db9a6c1ca78edd81 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Thu, 24 Apr 2025 13:33:37 +0200 Subject: [PATCH] Add missing flags to node. --- sz-poc-offsite-2025/evm/sequencer-node/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sz-poc-offsite-2025/evm/sequencer-node/src/main.rs b/sz-poc-offsite-2025/evm/sequencer-node/src/main.rs index 7762e63..39becd8 100644 --- a/sz-poc-offsite-2025/evm/sequencer-node/src/main.rs +++ b/sz-poc-offsite-2025/evm/sequencer-node/src/main.rs @@ -52,6 +52,9 @@ fn main() -> eyre::Result<()> { "--dev.block-time=2s", "--http.addr=0.0.0.0", "--http.port=8546", + "--http.api eth,net,web3,debug,trace,txpool", // Some might be unnecessary, but I guess + // they don't hurt + "--http.corsdomain \"*\"" // Needed locally, probably needed here as well. ]) .unwrap() .run(|builder, _| {