refactor: [rpc] Remove confusing and brittle integral casts (take 2)

This commit is contained in:
MarcoFalke
2026-02-06 13:17:57 +01:00
parent 0cd309c75e
commit fa6801366d
10 changed files with 24 additions and 24 deletions

View File

@@ -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);