mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-05-21 16:29:26 +00:00
fix: add postage contract start block (#235)
This commit is contained in:
parent
28b88feffd
commit
0fa8acfd1b
@ -1,4 +1,4 @@
|
|||||||
BEE_VERSION="1.10.0-rc16"
|
BEE_VERSION="1.10.0-rc17"
|
||||||
BLOCKCHAIN_VERSION="1.3.1"
|
BLOCKCHAIN_VERSION="1.3.1"
|
||||||
BEE_ENV_PREFIX="bee-factory"
|
BEE_ENV_PREFIX="bee-factory"
|
||||||
BEE_IMAGE_PREFIX="ethersphere"
|
BEE_IMAGE_PREFIX="ethersphere"
|
||||||
|
|||||||
@ -251,6 +251,7 @@ if [ -z "$QUEEN_CONTAINER_IN_DOCKER" ] || $EPHEMERAL ; then
|
|||||||
--full-node=true \
|
--full-node=true \
|
||||||
--welcome-message="You have found the queen of the beehive..." \
|
--welcome-message="You have found the queen of the beehive..." \
|
||||||
--cors-allowed-origins="*" \
|
--cors-allowed-origins="*" \
|
||||||
|
--postage-stamp-start-block=1 \
|
||||||
$CONTRACT_ADDRESSES_ARGS
|
$CONTRACT_ADDRESSES_ARGS
|
||||||
else
|
else
|
||||||
docker start "$QUEEN_CONTAINER_IN_DOCKER"
|
docker start "$QUEEN_CONTAINER_IN_DOCKER"
|
||||||
@ -301,6 +302,7 @@ for i in $(seq 1 1 "$WORKERS"); do
|
|||||||
--full-node=true \
|
--full-node=true \
|
||||||
--welcome-message="I'm just Bee worker ${i} in the beehive." \
|
--welcome-message="I'm just Bee worker ${i} in the beehive." \
|
||||||
--cors-allowed-origins="*" \
|
--cors-allowed-origins="*" \
|
||||||
|
--postage-stamp-start-block=1 \
|
||||||
$CONTRACT_ADDRESSES_ARGS
|
$CONTRACT_ADDRESSES_ARGS
|
||||||
else
|
else
|
||||||
docker start "$WORKER_CONTAINER_IN_DOCKER"
|
docker start "$WORKER_CONTAINER_IN_DOCKER"
|
||||||
|
|||||||
@ -399,6 +399,7 @@ export class Docker {
|
|||||||
'full-node': 'true',
|
'full-node': 'true',
|
||||||
'welcome-message': 'You have found the queen of the beehive...',
|
'welcome-message': 'You have found the queen of the beehive...',
|
||||||
'cors-allowed-origins': '*',
|
'cors-allowed-origins': '*',
|
||||||
|
'postage-stamp-start-block': '1',
|
||||||
...contractAddresses,
|
...contractAddresses,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user