Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable tree compact bump version to v2.1.0 #655

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ brew install kyokan-bob
4. Compare a checksum of a downloaded Bob Wallet app file:
```
# Linux
sha256sum Bob-2.0.0.AppImage
sha256sum Bob-2.1.0.AppImage

# Windows
certUtil -hashfile Bob-2.0.0.msi SHA256
certUtil -hashfile Bob-2.1.0.msi SHA256

# macOS
shasum -a 256 Bob-2.0.0-x86.dmg
shasum -a 256 bob-2.0.0-arm64.dmg
shasum -a 256 Bob-2.1.0-x86.dmg
shasum -a 256 bob-2.1.0-arm64.dmg
```

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

```bash
npm run package-mac-intel
```
```

The output app will be created in the `/release/mac` or `/release/mac-arm64` folder.
Open `Bob.app` to start the wallet.
Expand Down
2 changes: 1 addition & 1 deletion app/background/node/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export class NodeService extends EventEmitter {
walletMigrate: 2,
walletIcannlockup: true,
maxOutbound: 4,
compactTreeOnInit: true,
compactTreeOnInit: false,
});

this.hsd.use(plugin);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bob-wallet",
"productName": "Bob",
"author": "Kyokan Group, Inc.",
"version": "2.0.0",
"version": "2.1.0",
"description": "A Handshake wallet and auction manager.",
"scripts": {
"build": "./scripts/package.sh",
Expand Down
Loading