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
Merge #7130: chore: sync formating of wallet/rpc code with Bitcoin Core
d46466f fmt: adjust formatting of rpc implementation for wallet to Bitcoin Core (Konstantin Akimov)
Pull request description:
## Issue being fixed or feature implemented
Doing backports for any RPC-related is struggle, because at some points formatting of files got different; due to missing changes from bitcoin#14726, bitcoin#25029, bitcoin#17809 and multiple other occasions.
## What was done?
Manually sync formatting for wallet/rpc with Bitcoin Core v25.99 (commit bbbf89a)
See also: #7129
These changes are split to 2 PR to reduce amount of conflicts and rebases in case of any backport are done due to huge diff size.
Hint: use 'ignore whitespace' feature to review this PR.
## How Has This Been Tested?
On top of this PR finally succeed to backport bitcoin#24118 for which I had lots of troubles to resolve conflicts.
## Breaking Changes
N/A
## Checklist:
- [x] 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
ACKs for top commit:
UdjinM6:
utACK d46466f
Tree-SHA512: 32debb41f769658e09d2aa19c9da77c9c4f4be6341a70ec9a2095ac2e37e29dc22a93d665e069aa146f78dca97e37e69cadfd058d74a5dcc64b898af487306a0
"\nEncrypts the wallet with 'passphrase'. This is for first time encryption.\n"
220
-
"After this, any calls that interact with private keys such as sending or signing \n"
221
-
"will require the passphrase to be set prior the making these calls.\n"
222
-
"Use the walletpassphrase call for this, and then walletlock call.\n"
223
-
"If the wallet is already encrypted, use the walletpassphrasechange call.\n",
224
-
{
225
-
{"passphrase", RPCArg::Type::STR, RPCArg::Optional::NO, "The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long."},
226
-
},
227
-
RPCResult{RPCResult::Type::STR, "", "A string with further instructions"},
"\nEncrypts the wallet with 'passphrase'. This is for first time encryption.\n"
220
+
"After this, any calls that interact with private keys such as sending or signing \n"
221
+
"will require the passphrase to be set prior the making these calls.\n"
222
+
"Use the walletpassphrase call for this, and then walletlock call.\n"
223
+
"If the wallet is already encrypted, use the walletpassphrasechange call.\n",
224
+
{
225
+
{"passphrase", RPCArg::Type::STR, RPCArg::Optional::NO, "The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long."},
226
+
},
227
+
RPCResult{RPCResult::Type::STR, "", "A string with further instructions"},
0 commit comments