Skip to content

Commit 5241d20

Browse files
committed
Merge branch 'next' into 4388-nakamoto-stacks-signer-should-store-its-party-shares-on-the-side-to-enable-restart
Merging instead of rebasing because we're at the end of a PR review process and some people find rebases disruptive when they are re-reviewing.
2 parents 818f0cf + aaab6bc commit 5241d20

File tree

5 files changed

+7
-17
lines changed

5 files changed

+7
-17
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,9 @@ jobs:
8989
##
9090
## Runs when the following is true:
9191
## - tag is provided
92-
## - workflow is building default branch (master)
9392
create-release:
9493
if: |
95-
inputs.tag != '' &&
96-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
94+
inputs.tag != ''
9795
name: Create Release
9896
needs:
9997
- rustfmt

.github/workflows/create-source-binary.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ concurrency:
2121
jobs:
2222
## Runs when the following is true:
2323
## - tag is provided
24-
## - workflow is building default branch (master)
2524
artifact:
2625
if: |
27-
inputs.tag != '' &&
28-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
26+
inputs.tag != ''
2927
name: Build Binaries
3028
runs-on: ubuntu-latest
3129
strategy:
@@ -60,4 +58,3 @@ jobs:
6058
arch: ${{ matrix.arch }}
6159
cpu: ${{ matrix.cpu }}
6260
tag: ${{ inputs.tag }}
63-

.github/workflows/github-release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@ jobs:
2525
##
2626
## Runs when the following is true:
2727
## - tag is provided
28-
## - workflow is building default branch (master)
2928
build-binaries:
3029
if: |
31-
inputs.tag != '' &&
32-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
30+
inputs.tag != ''
3331
name: Build Binaries
3432
uses: ./.github/workflows/create-source-binary.yml
3533
with:
@@ -41,8 +39,7 @@ jobs:
4139
## - workflow is building default branch (master)
4240
create-release:
4341
if: |
44-
inputs.tag != '' &&
45-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
42+
inputs.tag != ''
4643
name: Create Release
4744
runs-on: ubuntu-latest
4845
needs:
@@ -84,8 +81,7 @@ jobs:
8481
## - workflow is building default branch (master)
8582
docker-image:
8683
if: |
87-
inputs.tag != '' &&
88-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
84+
inputs.tag != ''
8985
name: Docker Image (Binary)
9086
uses: ./.github/workflows/image-build-binary.yml
9187
needs:

.github/workflows/image-build-binary.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ jobs:
2828
## - workflow is building default branch (master)
2929
image:
3030
if: |
31-
inputs.tag != '' &&
32-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
31+
inputs.tag != ''
3332
name: Build Image
3433
runs-on: ubuntu-latest
3534
strategy:

stackslib/src/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pub const BITCOIN_TESTNET_STACKS_21_BURN_HEIGHT: u64 = 2_422_101;
134134
pub const BITCOIN_TESTNET_STACKS_22_BURN_HEIGHT: u64 = 2_431_300;
135135
pub const BITCOIN_TESTNET_STACKS_23_BURN_HEIGHT: u64 = 2_431_633;
136136
pub const BITCOIN_TESTNET_STACKS_24_BURN_HEIGHT: u64 = 2_432_545;
137-
pub const BITCOIN_TESTNET_STACKS_25_BURN_HEIGHT: u64 = 20_000_000;
137+
pub const BITCOIN_TESTNET_STACKS_25_BURN_HEIGHT: u64 = 2_583_893;
138138
pub const BITCOIN_TESTNET_STACKS_30_BURN_HEIGHT: u64 = 30_000_000;
139139

140140
pub const BITCOIN_REGTEST_FIRST_BLOCK_HEIGHT: u64 = 0;

0 commit comments

Comments
 (0)