Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
otherview committed Dec 26, 2023
1 parent d12a540 commit 30f5fd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go/enclave/nodetype/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down
2 changes: 1 addition & 1 deletion integration/eth2network/eth2_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30f5fd8

Please sign in to comment.