From 30f5fd8e36f5caec38bffd68cfcc679f4ea06514 Mon Sep 17 00:00:00 2001 From: otherview Date: Tue, 26 Dec 2023 12:54:08 +0000 Subject: [PATCH] . --- go/enclave/nodetype/sequencer.go | 2 +- integration/eth2network/eth2_network.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go/enclave/nodetype/sequencer.go b/go/enclave/nodetype/sequencer.go index 1ef74129f6..1b70086372 100644 --- a/go/enclave/nodetype/sequencer.go +++ b/go/enclave/nodetype/sequencer.go @@ -163,7 +163,7 @@ func (s *sequencer) createGenesisBatch(block *common.L1Block) error { return err } - time.Sleep(5 * time.Second) + time.Sleep(time.Second) // produce batch #2 which has the message bus and any other system contracts cb, err := s.produceBatch( big.NewInt(0).Add(batch.Header.SequencerOrderNo, big.NewInt(1)), diff --git a/integration/eth2network/eth2_network.go b/integration/eth2network/eth2_network.go index 9849099730..19bee3d939 100644 --- a/integration/eth2network/eth2_network.go +++ b/integration/eth2network/eth2_network.go @@ -609,7 +609,7 @@ func (n *Impl) prefundedBalancesActive(client *ethclient.Client) error { if balance.Cmp(gethcommon.Big0) == 0 { return fmt.Errorf("unexpected %s balance for account %s", balance.String(), addr) } - fmt.Printf("Account %s prefunded with %s", addr, balance.String()) + fmt.Printf("Account %s prefunded with %s\n", addr, balance.String()) } return nil