Skip to content

Commit

Permalink
upping tickrate to for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ssolit committed Jun 13, 2024
1 parent 08669ae commit 2808886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion world-engine/cardinal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

func main() {
w, err := cardinal.NewWorld(cardinal.WithDisableSignatureVerification(), cardinal.WithTickChannel(time.Tick(1000*time.Millisecond)), cardinal.WithCustomLogger(log.Logger), cardinal.WithReceiptHistorySize(10000))
w, err := cardinal.NewWorld(cardinal.WithDisableSignatureVerification(), cardinal.WithTickChannel(time.Tick(time.Millisecond)), cardinal.WithCustomLogger(log.Logger), cardinal.WithReceiptHistorySize(10000))
if err != nil {
log.Fatal().Err(err).Msg("")
}
Expand Down

0 comments on commit 2808886

Please sign in to comment.