Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix: add postage contract start block (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
AuHau authored Dec 19, 2022
1 parent 28b88fe commit 0fa8acf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion generator/scripts/.env
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 2 additions & 0 deletions generator/scripts/bee.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions src/utils/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down

0 comments on commit 0fa8acf

Please sign in to comment.