Skip to content

Commit

Permalink
feat: disable signature verification
Browse files Browse the repository at this point in the history
  • Loading branch information
smsunarto committed Sep 4, 2023
1 parent 7ab7977 commit 29b1759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cardinal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func main() {
world.StartGameLoop(context.Background(), time.Second)

// TODO: When launching to production, you should enable signature verification.
h, err := server.NewHandler(world, server.WithPort(cfg.CardinalPort))
h, err := server.NewHandler(world, server.WithPort(cfg.CardinalPort), server.DisableSignatureVerification())
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 29b1759

Please sign in to comment.