Skip to content

Commit

Permalink
Fix fmt cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
sieniven committed Nov 21, 2023
1 parent 34635f1 commit 4c7457e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/dfi/rpc_accounts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,7 @@ UniValue transferdomain(const JSONRPCRequest &request) {
"DVM, etc.\n" +
HelpRequiringPassphrase(pwallet) + "\n",
{
{
{
"array",
RPCArg::Type::ARR,
RPCArg::Optional::NO,
Expand Down Expand Up @@ -2188,8 +2188,7 @@ UniValue transferdomain(const JSONRPCRequest &request) {
},
},
},
},
},
}, },
RPCResult{"\"hash\" (string) The hex-encoded hash of broadcasted transaction\n"},
RPCExamples{
HelpExampleCli(
Expand Down Expand Up @@ -2223,9 +2222,9 @@ UniValue transferdomain(const JSONRPCRequest &request) {
const UniValue &elem = srcDstArray[i].get_obj();
RPCTypeCheckObj(elem,
{
{"src", UniValueType(UniValue::VOBJ)},
{"dst", UniValueType(UniValue::VOBJ)},
{"nonce", UniValueType(UniValue::VNUM)},
{"src", UniValueType(UniValue::VOBJ) },
{"dst", UniValueType(UniValue::VOBJ) },
{"nonce", UniValueType(UniValue::VNUM) },
{"singlekeycheck", UniValueType(UniValue::VBOOL)},
},
true,
Expand Down

0 comments on commit 4c7457e

Please sign in to comment.