mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 05:23:01 +01:00
Merge #8832: [rpc] throw JSONRPCError when utxo set can not be read
fa05cfd
[rpc] throw JSONRPCError when utxo set can not be read (MarcoFalke)
This commit is contained in:
commit
7d563cc16d
@ -848,6 +848,8 @@ UniValue gettxoutsetinfo(const UniValue& params, bool fHelp)
|
|||||||
ret.push_back(Pair("bytes_serialized", (int64_t)stats.nSerializedSize));
|
ret.push_back(Pair("bytes_serialized", (int64_t)stats.nSerializedSize));
|
||||||
ret.push_back(Pair("hash_serialized", stats.hashSerialized.GetHex()));
|
ret.push_back(Pair("hash_serialized", stats.hashSerialized.GetHex()));
|
||||||
ret.push_back(Pair("total_amount", ValueFromAmount(stats.nTotalAmount)));
|
ret.push_back(Pair("total_amount", ValueFromAmount(stats.nTotalAmount)));
|
||||||
|
} else {
|
||||||
|
throw JSONRPCError(RPC_INTERNAL_ERROR, "Unable to read UTXO set");
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user