Skip to content

Commit

Permalink
fix version properly
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinMechanic committed Oct 18, 2024
1 parent 535e4c8 commit b7b7dca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id: bitcoind
title: "Bitcoin Knots"
version: 27.1.0.5
eos-version: 0.3.4.3
version: 27.1.0
eos-version: 0.3.5.1
release-notes: |
* Latest release from Knots - see full release notes [here](https://github.com/bitcoinknots/bitcoin/releases/tag/v27.1.knots20240801)
license: MIT
Expand Down
8 changes: 4 additions & 4 deletions scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export const migration: T.ExpectedExports.migration =
{ version: "26.1.0", type: "down" }
),
},
"27.1.4": {
"27.1.0": {
up: compat.migrations.updateConfig(
(config: any) => {
config.blkconstr = {
Expand All @@ -271,7 +271,7 @@ export const migration: T.ExpectedExports.migration =
return config;
},
true,
{ version: "27.1.4", type: "up" }
{ version: "27.1.0", type: "up" }
),
down: compat.migrations.updateConfig(
(config: any) => {
Expand All @@ -285,9 +285,9 @@ export const migration: T.ExpectedExports.migration =
return config;
},
true,
{ version: "27.1.4", type: "down" }
{ version: "27.1.0", type: "down" }
),
},
},
"27.1.4"
"27.1.0"
);

0 comments on commit b7b7dca

Please sign in to comment.