mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-11 08:07:33 +02:00
refactor: [rpc] Remove confusing and brittle integral casts (take 2)
This commit is contained in:
@@ -1092,7 +1092,7 @@ static RPCHelpMan decodepsbt()
|
||||
result.pushKV("global_xpubs", std::move(global_xpubs));
|
||||
|
||||
// PSBT version
|
||||
result.pushKV("psbt_version", static_cast<uint64_t>(psbtx.GetVersion()));
|
||||
result.pushKV("psbt_version", psbtx.GetVersion());
|
||||
|
||||
// Proprietary
|
||||
UniValue proprietary(UniValue::VARR);
|
||||
|
||||
Reference in New Issue
Block a user