mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
[rpc] Fix fVerbose parsing (remove excess if cases).
This commit is contained in:
parent
26efc220a1
commit
a5f5a2ce53
@ -141,19 +141,7 @@ UniValue getrawtransaction(const JSONRPCRequest& request)
|
|||||||
// Accept either a bool (true) or a num (>=1) to indicate verbose output.
|
// Accept either a bool (true) or a num (>=1) to indicate verbose output.
|
||||||
bool fVerbose = false;
|
bool fVerbose = false;
|
||||||
if (!request.params[1].isNull()) {
|
if (!request.params[1].isNull()) {
|
||||||
if (request.params[1].isNum()) {
|
fVerbose = request.params[1].isNum() ? (request.params[1].get_int() != 0) : request.params[1].get_bool();
|
||||||
if (request.params[1].get_int() != 0) {
|
|
||||||
fVerbose = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(request.params[1].isBool()) {
|
|
||||||
if(request.params[1].isTrue()) {
|
|
||||||
fVerbose = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid type provided. Verbose parameter must be a boolean.");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CTransactionRef tx;
|
CTransactionRef tx;
|
||||||
|
@ -188,13 +188,13 @@ class RawTransactionsTest(BitcoinTestFramework):
|
|||||||
assert_equal(self.nodes[0].getrawtransaction(txHash, True)["hex"], rawTxSigned['hex'])
|
assert_equal(self.nodes[0].getrawtransaction(txHash, True)["hex"], rawTxSigned['hex'])
|
||||||
|
|
||||||
# 6. invalid parameters - supply txid and string "Flase"
|
# 6. invalid parameters - supply txid and string "Flase"
|
||||||
assert_raises_rpc_error(-3,"Invalid type", self.nodes[0].getrawtransaction, txHash, "Flase")
|
assert_raises_rpc_error(-1,"not a boolean", self.nodes[0].getrawtransaction, txHash, "Flase")
|
||||||
|
|
||||||
# 7. invalid parameters - supply txid and empty array
|
# 7. invalid parameters - supply txid and empty array
|
||||||
assert_raises_rpc_error(-3,"Invalid type", self.nodes[0].getrawtransaction, txHash, [])
|
assert_raises_rpc_error(-1,"not a boolean", self.nodes[0].getrawtransaction, txHash, [])
|
||||||
|
|
||||||
# 8. invalid parameters - supply txid and empty dict
|
# 8. invalid parameters - supply txid and empty dict
|
||||||
assert_raises_rpc_error(-3,"Invalid type", self.nodes[0].getrawtransaction, txHash, {})
|
assert_raises_rpc_error(-1,"not a boolean", self.nodes[0].getrawtransaction, txHash, {})
|
||||||
|
|
||||||
inputs = [ {'txid' : "1d1d4e24ed99057e84c3f80fd8fbec79ed9e1acee37da269356ecea000000000", 'vout' : 1, 'sequence' : 1000}]
|
inputs = [ {'txid' : "1d1d4e24ed99057e84c3f80fd8fbec79ed9e1acee37da269356ecea000000000", 'vout' : 1, 'sequence' : 1000}]
|
||||||
outputs = { self.nodes[0].getnewaddress() : 1 }
|
outputs = { self.nodes[0].getnewaddress() : 1 }
|
||||||
|
Loading…
Reference in New Issue
Block a user