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

This commit is contained in:
MarcoFalke
2026-05-06 17:36:32 +02:00
parent aa1d0d7cd7
commit fa864b937e

View File

@@ -1167,7 +1167,7 @@ static RPCMethod exportasmap()
UniValue result(UniValue::VOBJ);
result.pushKV("path", export_path.utf8string());
result.pushKV("bytes_written", (uint64_t)node::data::ip_asn.size());
result.pushKV("bytes_written", node::data::ip_asn.size());
result.pushKV("file_hash", HexStr(hasher.GetSHA256()));
return result;
#endif