mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
rpc: Simplify GetAllOutputTypes with the Join helper
This commit does not change behavior
This commit is contained in:
parent
02b26ba1c1
commit
fa41c65702
1 changed files with 3 additions and 4 deletions
|
@ -511,12 +511,11 @@ static UniValue decoderawtransaction(const JSONRPCRequest& request)
|
|||
|
||||
static std::string GetAllOutputTypes()
|
||||
{
|
||||
std::string ret;
|
||||
std::vector<std::string> ret;
|
||||
for (int i = TX_NONSTANDARD; i <= TX_WITNESS_UNKNOWN; ++i) {
|
||||
if (i != TX_NONSTANDARD) ret += ", ";
|
||||
ret += GetTxnOutputType(static_cast<txnouttype>(i));
|
||||
ret.emplace_back(GetTxnOutputType(static_cast<txnouttype>(i)));
|
||||
}
|
||||
return ret;
|
||||
return Join(ret, ", ");
|
||||
}
|
||||
|
||||
static UniValue decodescript(const JSONRPCRequest& request)
|
||||
|
|
Loading…
Add table
Reference in a new issue