Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ However if this is done, once the release has been tagged in the dash-detached-s
### Windows and macOS codesigners only: Commit the detached codesign payloads

```sh
pushd ~/dashcore-detached-sigs
pushd ~/dash-detached-sigs
# checkout the appropriate branch for this release series
git checkout "v${VERSION}"
rm -rf *
Expand Down
3 changes: 2 additions & 1 deletion src/rpc/mempool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ RPCHelpMan sendrawtransaction()
RPCTypeCheck(request.params, {
UniValue::VSTR,
UniValueType(), // VNUM or VSTR, checked inside AmountFromValue()
UniValue::VBOOL
UniValue::VBOOL,
UniValue::VBOOL,
});

CMutableTransaction mtx;
Expand Down
Loading