Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Mar 8, 2024
1 parent 62a5aef commit c955435
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vms/platformvm/vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ func TestBootstrapPartiallyAccepted(t *testing.T) {
externalSender.Default(true)

// Passes messages from the consensus engine to the network
internalSender, err := sender.New(
sender, err := sender.New(
consensusCtx,
mc,
externalSender,
Expand Down Expand Up @@ -1406,7 +1406,7 @@ func TestBootstrapPartiallyAccepted(t *testing.T) {
// The engine handles consensus
snowGetHandler, err := snowgetter.New(
vm,
internalSender,
sender,
consensusCtx.Log,
time.Second,
2000,
Expand All @@ -1420,7 +1420,7 @@ func TestBootstrapPartiallyAccepted(t *testing.T) {
Beacons: beacons,
SampleK: beacons.Count(ctx.SubnetID),
StartupTracker: startup,
Sender: internalSender,
Sender: sender,
BootstrapTracker: bootstrapTracker,
AncestorsMaxContainersReceived: 2000,
Blocked: blocked,
Expand Down

0 comments on commit c955435

Please sign in to comment.