diff --git a/docker-compose.yml b/docker-compose.yml index 175077b..4770cb4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: diff --git a/world.toml b/world.toml index d47b2b8..c03a2e8 100644 --- a/world.toml +++ b/world.toml @@ -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"