diff --git a/bedrock/scripts/run_logos_blockchain_node.sh b/bedrock/scripts/run_logos_blockchain_node.sh index c619b86b..94486ad6 100755 --- a/bedrock/scripts/run_logos_blockchain_node.sh +++ b/bedrock/scripts/run_logos_blockchain_node.sh @@ -6,7 +6,7 @@ export CFG_FILE_PATH="/config.yaml" \ CFG_SERVER_ADDR="http://cfgsync:4400" \ CFG_HOST_IP=$(hostname -i) \ CFG_HOST_IDENTIFIER="validator-$(hostname -i)" \ - LOG_LEVEL="DEBUG" \ + LOG_LEVEL="INFO" \ POL_PROOF_DEV_MODE=true /usr/bin/logos-blockchain-cfgsync-client diff --git a/integration_tests/tests/indexer.rs b/integration_tests/tests/indexer.rs index c0b92a90..0aef4a42 100644 --- a/integration_tests/tests/indexer.rs +++ b/integration_tests/tests/indexer.rs @@ -18,7 +18,7 @@ use tokio::test; use wallet::cli::{Command, programs::native_token_transfer::AuthTransferSubcommand}; /// Maximum time to wait for the indexer to catch up to the sequencer. -const L2_TO_L1_TIMEOUT_MILLIS: u64 = 900_000; +const L2_TO_L1_TIMEOUT_MILLIS: u64 = 180_000; /// Poll the indexer until its last finalized block id reaches the sequencer's /// current last block id (and at least the genesis block has been advanced past),