Skip to content

Commit

Permalink
fix prologue in distributed post systest
Browse files Browse the repository at this point in the history
  • Loading branch information
poszu committed Dec 3, 2024
1 parent c7210d1 commit d3183ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion systest/tests/distributed_post_verification_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func TestPostMalfeasanceProof(t *testing.T) {
signer, err := signing.NewEdSigner(signing.WithPrefix(cl.GenesisID().Bytes()))
require.NoError(t, err)

prologue := fmt.Sprintf("%x-%v", cl.GenesisID(), cfg.LayersPerEpoch*2-1)
prologue := fmt.Sprintf("%x-%v", cl.GenesisID().Bytes(), cfg.LayersPerEpoch*2-1)
host, err := p2p.New(
logger.Named("p2p"),
cfg.P2P,
Expand Down

0 comments on commit d3183ae

Please sign in to comment.