You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
49a05e4 Merge bitcoin#26194: rpc, wallet: use the same `next_index` key in `listdescriptors` and `importdescriptors` (PastaBot)
669b60e Merge bitcoin#27073: Convert ArgsManager::GetDataDir to a read-only function (PastaBot)
425ed5e Merge bitcoin#27124: docs: add ramdisk guide for running tests on OSX (PastaBot)
c07cb09 Merge bitcoin#27271: RPC: Fix fund transaction crash when at 0-value, 0-fee (PastaBot)
4818e39 Merge bitcoin#26119: doc: Move -permitbaremultisig to the relay help category (PastaPastaPasta)
2fcb230 Merge bitcoin#27068: wallet: SecureString to allow null characters (PastaBot)
7c07a80 Merge bitcoin#22151: build: Follow Transifex docs to prepare XLIFF source (PastaBot)
fff6c95 Merge bitcoin#24359: doc: Fix typos (PastaBot)
f7ddd56 Merge bitcoin#24282: docs: Move explanation of hardened key syntax closer to KEY section (PastaBot)
8300adb Merge bitcoin#24330: doc: release-process: Specify remote name in "git fetch" (PastaBot)
379f039 Merge bitcoin#25158: rpc, wallet: add abandoned field for all categories of transaction in ListTransaction (PastaBot)
77db9c8 Merge bitcoin#26507: test: remove unused vars in `feature_block` (PastaBot)
5351b8b Merge bitcoin#26924: refactor: Add missing includes to fix gcc-13 compile error (PastaBot)
d2f9d42 Merge bitcoin#26794: test: test banlist database recreation (PastaBot)
Pull request description:
## Issue being fixed or feature implemented
Batch of backports by @DashCoreAutoGuix
## What was done?
## How Has This Been Tested?
## Breaking Changes
## Checklist:
_Go over all the following points, and put an `x` in all the boxes that apply._
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have added or updated relevant unit/integration/functional/e2e tests
- [ ] I have made corresponding changes to the documentation
- [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
Top commit has no ACKs.
Tree-SHA512: 7935d4dd9c2c37780c6057d264608f0f994b3ff61c58bd59f9644463eb94be4873b5b7a537956805ab504e7658f5d6d2cfc88e71e9545aeb75faf995e3b83559
Copy file name to clipboardExpand all lines: doc/descriptors.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,8 @@ Descriptors consist of several types of expressions. The top level expression is
73
73
- Followed by zero or more `/NUM` unhardened and `/NUM'` hardened BIP32 derivation steps.
74
74
- Optionally followed by a single `/*` or `/*'` final step to denote all (direct) unhardened or hardened children.
75
75
- The usage of hardened derivation steps requires providing the private key.
76
-
- Anywhere a `'` suffix is permitted to denote hardened derivation, the suffix `h` can be used instead.
76
+
77
+
(Anywhere a `'` suffix is permitted to denote hardened derivation, the suffix `h` can be used instead.)
77
78
78
79
`ADDR` expressions are any type of supported address:
79
80
- P2PKH addresses (base58, of the form `X...`). Note that P2PKH addresses in descriptors cannot be used for P2PK outputs (use the `pk` function instead).
argsman.AddArg("-peerbloomfilters", strprintf("Support filtering of blocks and transaction with bloom filters (default: %u)", DEFAULT_PEERBLOOMFILTERS), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
argsman.AddArg("-peertimeout=<n>", strprintf("Specify a p2p connection timeout delay in seconds. After connecting to a peer, wait this amount of time before considering disconnection based on inactivity (minimum: 1, default: %d)", DEFAULT_PEER_CONNECT_TIMEOUT), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
// TODO: remove the sentence "Nodes not using ... incoming connections." once the changes from
596
595
// https://github.com/bitcoin/bitcoin/pull/23542 have become widespread.
597
596
argsman.AddArg("-port=<port>", strprintf("Listen for connections on <port>. Nodes not using the default ports (default: %u, testnet: %u, regtest: %u) are unlikely to get incoming connections. Not relevant for I2P (see doc/i2p.md).", defaultChainParams->GetDefaultPort(), testnetChainParams->GetDefaultPort(), regtestChainParams->GetDefaultPort()), ArgsManager::ALLOW_ANY | ArgsManager::NETWORK_ONLY, OptionsCategory::CONNECTION);
argsman.AddArg("-bytespersigop", strprintf("Equivalent bytes per sigop in transactions for relay and mining (default: %u)", DEFAULT_BYTES_PER_SIGOP), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY);
747
746
argsman.AddArg("-datacarrier", strprintf("Relay and mine data carrier transactions (default: %u)", DEFAULT_ACCEPT_DATACARRIER), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY);
748
747
argsman.AddArg("-datacarriersize", strprintf("Maximum size of data in data carrier transactions we relay and mine (default: %u)", MAX_OP_RETURN_RELAY), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY);
argsman.AddArg("-minrelaytxfee=<amt>", strprintf("Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s)",
argsman.AddArg("-whitelistforcerelay", strprintf("Add 'forcerelay' permission to whitelisted inbound peers with default permissions. This will relay transactions even if the transactions were already in the mempool. (default: %d)", DEFAULT_WHITELISTFORCERELAY), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY);
0 commit comments