Skip to content

Commit

Permalink
Fix missing parameter in publicrpcserver_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwell Dulin committed Jul 18, 2024
1 parent 15cdb5b commit eac6ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/publicrpc/publicrpcserver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func TestGetSignedVAABadAddress(t *testing.T) {
func TestGovernorIsVAAEnqueuedNoMessage(t *testing.T) {
ctx := context.Background()
logger, _ := zap.NewProduction()
gov := governor.NewChainGovernor(logger, nil, common.GoTest)
gov := governor.NewChainGovernor(logger, nil, common.GoTest, "")
server := &PublicrpcServer{logger: logger, gov: gov}

// A message without the messageId set should not panic but return an error instead.
Expand Down

0 comments on commit eac6ff4

Please sign in to comment.