Skip to content

Commit 0432158

Browse files
authored
Merge pull request #655 from rithvikvibhu/disable-tree-compact-bump-ver
Disable tree compact bump version to v2.1.0
2 parents 227a690 + 3e21401 commit 0432158

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ brew install kyokan-bob
3232
4. Compare a checksum of a downloaded Bob Wallet app file:
3333
```
3434
# Linux
35-
sha256sum Bob-2.0.0.AppImage
35+
sha256sum Bob-2.1.0.AppImage
3636
3737
# Windows
38-
certUtil -hashfile Bob-2.0.0.msi SHA256
38+
certUtil -hashfile Bob-2.1.0.msi SHA256
3939
4040
# macOS
41-
shasum -a 256 Bob-2.0.0-x86.dmg
42-
shasum -a 256 bob-2.0.0-arm64.dmg
41+
shasum -a 256 Bob-2.1.0-x86.dmg
42+
shasum -a 256 bob-2.1.0-arm64.dmg
4343
```
4444

4545
For more details and more advanced PGP signature verification see https://github.com/kyokan/bob-wallet/pull/612.
@@ -112,7 +112,7 @@ be run in an environment where `libunbound` is available as an x86 package.
112112

113113
```bash
114114
npm run package-mac-intel
115-
```
115+
```
116116

117117
The output app will be created in the `/release/mac` or `/release/mac-arm64` folder.
118118
Open `Bob.app` to start the wallet.

app/background/node/service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export class NodeService extends EventEmitter {
239239
walletMigrate: 2,
240240
walletIcannlockup: true,
241241
maxOutbound: 4,
242-
compactTreeOnInit: true,
242+
compactTreeOnInit: false,
243243
});
244244

245245
this.hsd.use(plugin);

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bob-wallet",
33
"productName": "Bob",
44
"author": "Kyokan Group, Inc.",
5-
"version": "2.0.0",
5+
"version": "2.1.0",
66
"description": "A Handshake wallet and auction manager.",
77
"scripts": {
88
"build": "./scripts/package.sh",

0 commit comments

Comments
 (0)