Skip to content

Commit

Permalink
bump knots to v26.1.knots20240325
Browse files Browse the repository at this point in the history
  • Loading branch information
Retropex committed Mar 29, 2024
1 parent bd89700 commit 1c7f056
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/buildService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Build the service package
id: build
run: |
sudo apt install -y librsvg2-bin librsvg2-2 imagemagick
git submodule update --init --recursive
start-sdk init
make
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/releaseService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:

- name: Build the service package
run: |
sudo apt install -y librsvg2-bin librsvg2-2 imagemagick
git submodule update --init --recursive
start-sdk init
make
Expand Down
2 changes: 1 addition & 1 deletion bitcoin
Submodule bitcoin updated 1186 files
4 changes: 2 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
id: bitcoind
title: "Bitcoin Knots"
version: 25.1.0
version: 26.1.0
eos-version: 0.3.4.3
release-notes: |
* Latest release from Knots - see full release notes [here](https://github.com/bitcoinknots/bitcoin/releases/tag/v25.1.knots20231115)
* Latest release from Knots - see full release notes [here](https://github.com/bitcoinknots/bitcoin/releases/tag/v26.1.knots20240325)
license: MIT
wrapper-repo: https://github.com/Start9Labs/bitcoind-wrapper
upstream-repo: https://github.com/bitcoinknots/bitcoin/
Expand Down
2 changes: 1 addition & 1 deletion scripts/services/getConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => {
range: "[1,10000]",
integral: true,
units: "bytes",
default: 83,
default: 42,
},
permitbaremultisig: {
type: "boolean",
Expand Down
18 changes: 11 additions & 7 deletions scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,26 +229,30 @@ export const migration: T.ExpectedExports.migration =
{ version: "25.0.0.2", type: "down" }
),
},
"26.0.0": {
"26.1.0": {
up: compat.migrations.updateConfig(
(config: any) => {
config.advanced.peers.v2transport = false;
config.datacarrier = true;
config.datacarriersize = 43;
config.permitbaremultisig = false;

return config;
},
true,
{ version: "26.0.0", type: "up" }
{ version: "26.1.0", type: "up" }
),
down: compat.migrations.updateConfig(
(config: any) => {
delete config.advanced.peers.v2transport;
delete config.datacarrier;
delete config.datacarriersize;
delete config.permitbaremultisig;

return config;
},
true,
{ version: "26.0.0", type: "down" }
{ version: "26.1.0", type: "down" }
),
},
},
"26.0.0"
);
"26.1.0"
);

0 comments on commit 1c7f056

Please sign in to comment.