Compare commits

...

2 Commits

Author SHA1 Message Date
SuiYuan
3fde61f301
Merge a695c9f517d5b1c8a5b8b33abaa59c38b19c012b into cd8089c20baaaee329cbf7951195953a9f86d7cf 2025-03-16 17:14:32 +01:00
suiyuan1314
a695c9f517
docs: fix typos 2025-03-06 11:04:26 +08:00
2 changed files with 4 additions and 4 deletions

View File

@ -730,7 +730,7 @@ General Bitcoin Core
- Make sure pull requests pass CI before merging.
- *Rationale*: Makes sure that they pass thorough testing, and that the tester will keep passing
- *Rationale*: Make sure that they pass thorough testing, and that the tester will keep passing
on the master branch. Otherwise, all new pull requests will start failing the tests, resulting in
confusion and mayhem.
@ -1415,7 +1415,7 @@ A few guidelines for introducing and reviewing new RPC interfaces:
convert a plaintext command line to JSON. If the types don't match, the method can be unusable
from there.
- A RPC method must either be a wallet method or a non-wallet method. Do not
- An RPC method must either be a wallet method or a non-wallet method. Do not
introduce new methods that differ in behavior based on the presence of a wallet.
- *Rationale*: As well as complicating the implementation and interfering
@ -1424,7 +1424,7 @@ A few guidelines for introducing and reviewing new RPC interfaces:
- Try to make the RPC response a JSON object.
- *Rationale*: If a RPC response is not a JSON object, then it is harder to avoid API breakage if
- *Rationale*: If an RPC response is not a JSON object, then it is harder to avoid API breakage if
new data in the response is needed.
- Wallet RPCs call BlockUntilSyncedToCurrentChain to maintain consistency with

View File

@ -83,7 +83,7 @@ Wallets are Berkeley DB (BDB) or SQLite databases.
3. A wallet database path can be specified with the `-wallet` option.
4. `wallet.dat` files must not be shared across different node instances, as that can result in key-reuse and double-spends due the lack of synchronization between instances.
4. `wallet.dat` files must not be shared across different node instances, as that can result in key-reuse and double-spends due to the lack of synchronization between instances.
5. Any copy or backup of the wallet should be done through a `backupwallet` call in order to update and lock the wallet, preventing any file corruption caused by updates during the copy.