Skip to content

Commit

Permalink
contracts: mine to void address to avoid auto-announce
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Aug 20, 2024
1 parent 823818a commit 1209fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions host/contracts/manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1311,9 +1311,9 @@ func TestChainIndexElementsDeepReorg(t *testing.T) {
}
}

mineAndSync(t, n1, h1.Wallet.Address(), 145)
mineAndSync(t, n1, types.VoidAddress, 145)
n2 := testutil.NewConsensusNode(t, network, genesis, log.Named("node2"))
testutil.MineBlocks(t, n2, h1.Wallet.Address(), 200)
testutil.MineBlocks(t, n2, types.VoidAddress, 200)

if _, err := h1.Syncer.Connect(context.Background(), n2.Syncer.Addr()); err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 1209fbe

Please sign in to comment.