Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Block time should be positive #32

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ services:
# this is a test mnemonic and should not be used in production. this mnemonic can be overwritten using the KEY_MNEMONIC environment variable
- KEY_MNEMONIC=${KEY_MNEMONIC:-enact adjust liberty squirrel bulk ticket invest tissue antique window thank slam unknown fury script among bread social switch glide wool clog flag enroll}
- FAUCET_ADDR=${FAUCET_ADDR:-world142fg37yzx04cslgeflezzh83wa4xlmjpms0sg5}
# Note, ":-" signals a default value of "1s", NOT negative 1 second.
- BLOCK_TIME=${BLOCK_TIME:-1s}
image: us-docker.pkg.dev/argus-labs/world-engine/chain:latest
expose:
Expand Down
2 changes: 1 addition & 1 deletion world.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ CHAIN_ID="world-engine"
# this is a test mnemonic and should not be used in production.
KEY_MNEMONIC="enact adjust liberty squirrel bulk ticket invest tissue antique window thank slam unknown fury script among bread social switch glide wool clog flag enroll"
FAUCET_ADDR="world142fg37yzx04cslgeflezzh83wa4xlmjpms0sg5"
BLOCK_TIME=-1
BLOCK_TIME="1s"