mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Compare commits
4 commits
bf0efc51eb
...
0497131132
Author | SHA1 | Date | |
---|---|---|---|
|
0497131132 | ||
|
c5e44a0435 | ||
|
32d55e28af | ||
|
2ca223d282 |
2 changed files with 8 additions and 1 deletions
|
@ -7,8 +7,15 @@ Some notes on how to build Bitcoin Core in Unix.
|
|||
To Build
|
||||
---------------------
|
||||
|
||||
### 1. Configuration
|
||||
|
||||
```bash
|
||||
cmake -B build
|
||||
```
|
||||
Run `cmake -B build -LH` to see the full list of available options.
|
||||
|
||||
### 2. Compile
|
||||
```
|
||||
cmake --build build # use "-j N" for N parallel jobs
|
||||
cmake --install build # optional
|
||||
```
|
||||
|
|
|
@ -87,7 +87,7 @@ class BackwardsCompatibilityTest(BitcoinTestFramework):
|
|||
# 0.21.x and 22.x would both produce bad derivation paths when topping up an inactive hd chain
|
||||
# Make sure that this is being automatically cleaned up by migration
|
||||
node_master = self.nodes[1]
|
||||
node_v22 = self.nodes[self.num_nodes - 5]
|
||||
node_v22 = self.nodes[self.num_nodes - 3]
|
||||
wallet_name = "bad_deriv_path"
|
||||
node_v22.createwallet(wallet_name=wallet_name, descriptors=False)
|
||||
bad_deriv_wallet = node_v22.get_wallet_rpc(wallet_name)
|
||||
|
|
Loading…
Add table
Reference in a new issue