mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Compare commits
4 commits
8d23a7694d
...
2f6140826e
Author | SHA1 | Date | |
---|---|---|---|
|
2f6140826e | ||
|
c5e44a0435 | ||
|
32d55e28af | ||
|
3a77f13992 |
2 changed files with 7 additions and 3 deletions
|
@ -380,11 +380,15 @@ For `gdb` create or append to [`.gdbinit` file](https://sourceware.org/gdb/curre
|
|||
set substitute-path ./src /path/to/project/root/src
|
||||
```
|
||||
|
||||
For `lldb` create or append to [`.lldbinit` file](https://lldb.llvm.org/man/lldb.html#configuration-files):
|
||||
For `lldb` create or append to [`~/.lldbinit` file](https://lldb.llvm.org/man/lldb.html#configuration-files):
|
||||
```
|
||||
settings set target.source-map ./src /path/to/project/root/src
|
||||
settings set target.source-map /path/to/bitcoin/build/src /path/to/bitcoin/src
|
||||
```
|
||||
|
||||
Note that both target (`build/` or whatever directory you created with `cmake -B`)
|
||||
and replacement paths must be absolute. A `.lldbinit` file in the root of the
|
||||
working directory will be ignored without specific settings to include it.
|
||||
|
||||
2. Add a symlink to the `./src` directory:
|
||||
```
|
||||
ln -s /path/to/project/root/src src
|
||||
|
|
|
@ -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