Skip to content

Commit 2350339

Browse files
Merge #6873: fix: follow-up fixes for #6855 - rpc annotation and name of repo
a60cc1b fix: annotation for sendrawtransaction rpc (VBOOL for deprecated IS) (Konstantin Akimov) 9483920 fix: reference to repo dashcore-detached-sigs to dash-detached-sigs (Konstantin Akimov) Pull request description: ## Issue being fixed or feature implemented Follow-up #6855 ## What was done? - fix RPC annotation for arguments `sendrawtransaction` - fix reference to repo dashcore-detached-sigs dash-detached-sigs ## How Has This Been Tested? N/A ## 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 a60cc1b kwvg: utACK a60cc1b Tree-SHA512: 409dae91bd67fe9df3f99b6dbc105555b69512f4896fdbeccc580641642dd368612025edd42e809326c0cec26cc070ad3d221b34efea848a0dbc4b42b3b3ab12
2 parents c6be968 + a60cc1b commit 2350339

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/release-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ However if this is done, once the release has been tagged in the dash-detached-s
148148
### Windows and macOS codesigners only: Commit the detached codesign payloads
149149

150150
```sh
151-
pushd ~/dashcore-detached-sigs
151+
pushd ~/dash-detached-sigs
152152
# checkout the appropriate branch for this release series
153153
git checkout "v${VERSION}"
154154
rm -rf *

src/rpc/mempool.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ RPCHelpMan sendrawtransaction()
5858
RPCTypeCheck(request.params, {
5959
UniValue::VSTR,
6060
UniValueType(), // VNUM or VSTR, checked inside AmountFromValue()
61-
UniValue::VBOOL
61+
UniValue::VBOOL,
62+
UniValue::VBOOL,
6263
});
6364

6465
CMutableTransaction mtx;

0 commit comments

Comments
 (0)