Skip to content

Commit f740ad5

Browse files
committed
Updated replayer address and first block slot
1 parent 4488c35 commit f740ad5

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ jobs:
523523
# to allow connection with replayer
524524
# TODO: remove when replayer supports identify
525525
KEEP_CONNECTION_WITH_UNKNOWN_STREAM: true
526-
REPLAYER_MULTIADDR: "/dns4/primary-tcp-proxy.hz.minaprotocol.network/tcp/40110/p2p/12D3KooWPayQEdprqY2m3biReUUybA5LoULpJE7YWu6wetEKKELv"
526+
REPLAYER_MULTIADDR: "/dns4/mina-rust-ci-1-libp2p.gcp.o1test.net/tcp/8302/p2p/12D3KooWNazk9D7RnbHFaPEfrL7BReAKr3rDRf7PivS2Lwx3ShAA"
527527
BPF_ALIAS: /coda/0.0.1/29936104443aaf264a7f0192ac64b1c7173198c1ed404c1bcff5e562e05eb7f6-0.0.0.0
528528
strategy:
529529
matrix:

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ website/static/api-docs/
1919
ledger/3.0.0mainnet
2020
ledger/berkeley-devnet
2121
mina-workdir
22-
.idea/
22+
.idea/
23+
24+
test.sh

node/testing/src/scenarios/solo_node/bootstrap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub struct SoloNodeBootstrap;
2424
// This test will fail if we don't start with this as the initial time because
2525
// the time validation for the first block will reject it.
2626
fn first_block_slot_timestamp_nanos(config: &RustNodeTestingConfig) -> u64 {
27-
let first_block_global_slot = 46891; // Update if replay changes
27+
let first_block_global_slot = 279218; // Update if replay changes
2828
let protocol_constants = config.genesis.protocol_constants().unwrap();
2929
let genesis_timestamp_ms = protocol_constants.genesis_state_timestamp.0.as_u64();
3030
let milliseconds_per_slot = constraint_constants().block_window_duration_ms;
@@ -42,7 +42,7 @@ impl SoloNodeBootstrap {
4242
pub async fn run(self, mut runner: ClusterRunner<'_>) {
4343
use self::TransitionFrontierSyncState::*;
4444

45-
const TIMEOUT: Duration = Duration::from_secs(60 * 40);
45+
const TIMEOUT: Duration = Duration::from_secs(60 * 25);
4646

4747
let replayer = hosts::replayer();
4848

p2p/src/p2p_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl P2pState {
7474
mina_core::log::info!(
7575
mina_core::log::system_time();
7676
kind = "P2pState new",
77-
summary = format!("Current node's id: {peer_id_str}"),
77+
summary = format!("Current node's id: {my_id}"),
7878
peer_id_str = peer_id_str,
7979
);
8080
}

0 commit comments

Comments
 (0)