Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Oct 13, 2023
1 parent fb22037 commit 044fc1a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions system_tests/bold_challenge_protocol_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,13 @@ func TestBoldProtocol(t *testing.T) {
)
Require(t, err)

poster := assertions.NewPoster(
poster, err := assertions.NewPoster(
assertionChain,
stateManager,
"good",
time.Hour,
)
Require(t, err)

stateManagerB, err := staker.NewStateManager(
statelessB,
Expand All @@ -209,12 +210,14 @@ func TestBoldProtocol(t *testing.T) {
l1client,
)
Require(t, err)
posterB := assertions.NewPoster(

posterB, err := assertions.NewPoster(
chainB,
stateManagerB,
"evil",
time.Hour,
)
Require(t, err)

l2info.GenerateAccount("Destination")
sequencerTxOpts := l1info.GetDefaultTransactOpts("Sequencer", ctx)
Expand Down

0 comments on commit 044fc1a

Please sign in to comment.