Skip to content

Commit ab98b97

Browse files
zone117xrafaelcr
andauthored
chore: update to latest stacks image with epoch2.5 bootup, pox-4 test fixes (#1924)
* chore: update to latest stacks image with epoch2.5 bootup * chore: upgrade stacks.js * fix: stack-extend increase * test: attempts * fix: stack cycle length * fix: attempt to fix stack extend in gha --------- Co-authored-by: Rafael Cardenas <[email protected]>
1 parent 82abc90 commit ab98b97

16 files changed

+191
-49
lines changed

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tasks:
1212
- init: npm ci
1313
command: npm run dev
1414
- openMode: split-right
15-
command: stacks-node start --config=stacks-blockchain/Stacks-dev.toml
15+
command: stacks-node start --config stacks-blockchain/Stacks-dev.toml
1616

1717
github:
1818
prebuilds:

docker/docker-compose.dev.stacks-blockchain-follower.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
stacks-blockchain:
44
build:
55
context: ../stacks-blockchain/docker
6-
command: stacks-node start --config=/app/config/Stacks-follower.toml
6+
command: stacks-node start --config /app/config/Stacks-follower.toml
77
restart: on-failure
88
environment:
99
STACKS_EVENT_OBSERVER: host.docker.internal:3700

docker/docker-compose.dev.stacks-blockchain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
stacks-blockchain:
4-
image: 'hirosystems/stacks-api-e2e:stacks3.0-457f270'
4+
image: 'hirosystems/stacks-api-e2e:stacks3.0-1360a17'
55
restart: on-failure
66
environment:
77
STACKS_EVENT_OBSERVER: host.docker.internal:3700

docker/docker-compose.dev.stacks-krypton.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
stacks-blockchain:
4-
image: 'hirosystems/stacks-api-e2e:stacks3.0-457f270'
4+
image: 'hirosystems/stacks-api-e2e:stacks3.0-1360a17'
55
ports:
66
- '18443:18443' # bitcoin regtest JSON-RPC interface
77
- '18444:18444' # bitcoin regtest p2p

docker/docker-compose.dev.subnets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
image: "hirosystems/stacks-subnets:7012d22"
2323
# build:
2424
# dockerfile: ./subnet-node.Dockerfile
25-
command: subnet-node start --config=/app/config/Stacks-subnet.toml
25+
command: subnet-node start --config /app/config/Stacks-subnet.toml
2626
ports:
2727
- "30443:30443" # subnet-node RPC interface
2828
- "30444:30444" # subnet-node p2p

docker/docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version: '3.7'
22
services:
33
stacks-blockchain:
4-
command: stacks-node start --config=/app/config/Stacks-mocknet.toml
4+
command: stacks-node start --config /app/config/Stacks-mocknet.toml

docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
stacks-blockchain:
1515
build:
1616
context: ../stacks-blockchain/docker
17-
command: stacks-node start --config=/app/config/Stacks-follower.toml
17+
command: stacks-node start --config /app/config/Stacks-follower.toml
1818
restart: on-failure
1919
environment:
2020
STACKS_EVENT_OBSERVER: stacks-blockchain-api:3700

docker/rosetta.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ case "${STACKS_NETWORK}" in
152152
;;
153153
esac
154154
# start stacks-blockchain and store pid
155-
${STACKS_BLOCKCHAIN_DIR}/stacks-node start --config=${STACKS_BLOCKCHAIN_DIR}/${STACKS_NETWORK}-follower-conf.toml 2>&1 &
155+
${STACKS_BLOCKCHAIN_DIR}/stacks-node start --config ${STACKS_BLOCKCHAIN_DIR}/${STACKS_NETWORK}-follower-conf.toml 2>&1 &
156156
STACKS_BLOCKCHAIN_PID=$!
157157

158158
# start stacks-blockchain-api and store pid

docker/standalone-regtest.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ RUN <<EOF
295295

296296
export STACKS_EVENT_OBSERVER="127.0.0.1:3998"
297297
envsubst < config.toml.in > config.toml
298-
stacks-node start --config=config.toml &
298+
stacks-node start --config config.toml &
299299
STACKS_PID=$!
300300

301301
while true; do
@@ -359,7 +359,7 @@ cat > run.sh <<'EOM'
359359

360360
export STACKS_EVENT_OBSERVER="127.0.0.1:3700"
361361
envsubst < config.toml.in > config.toml
362-
stacks-node start --config=config.toml &
362+
stacks-node start --config config.toml &
363363
STACKS_PID=$!
364364

365365
while true; do

package-lock.json

Lines changed: 77 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)