fix: add postage contract start block (#235)

This commit is contained in:
Adam Uhlíř 2022-12-19 06:18:09 -08:00 committed by GitHub
parent 28b88feffd
commit 0fa8acfd1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
BEE_VERSION="1.10.0-rc16"
BEE_VERSION="1.10.0-rc17"
BLOCKCHAIN_VERSION="1.3.1"
BEE_ENV_PREFIX="bee-factory"
BEE_IMAGE_PREFIX="ethersphere"

View File

@ -251,6 +251,7 @@ if [ -z "$QUEEN_CONTAINER_IN_DOCKER" ] || $EPHEMERAL ; then
--full-node=true \
--welcome-message="You have found the queen of the beehive..." \
--cors-allowed-origins="*" \
--postage-stamp-start-block=1 \
$CONTRACT_ADDRESSES_ARGS
else
docker start "$QUEEN_CONTAINER_IN_DOCKER"
@ -301,6 +302,7 @@ for i in $(seq 1 1 "$WORKERS"); do
--full-node=true \
--welcome-message="I'm just Bee worker ${i} in the beehive." \
--cors-allowed-origins="*" \
--postage-stamp-start-block=1 \
$CONTRACT_ADDRESSES_ARGS
else
docker start "$WORKER_CONTAINER_IN_DOCKER"

View File

@ -399,6 +399,7 @@ export class Docker {
'full-node': 'true',
'welcome-message': 'You have found the queen of the beehive...',
'cors-allowed-origins': '*',
'postage-stamp-start-block': '1',
...contractAddresses,
}