We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GetUtxosResponse
lightning-block-sync
1 parent 30647f2 commit 83d9a2bCopy full SHA for 83d9a2b
lightning-block-sync/src/convert.rs
@@ -264,10 +264,12 @@ impl TryInto<BlockHash> for JsonResponse {
264
/// The REST `getutxos` endpoint retuns a whole pile of data we don't care about and one bit we do
265
/// - whether the `hit bitmap` field had any entries. Thus we condense the result down into only
266
/// that.
267
+#[cfg(feature = "rest-client")]
268
pub(crate) struct GetUtxosResponse {
269
pub(crate) hit_bitmap_nonempty: bool
270
}
271
272
273
impl TryInto<GetUtxosResponse> for JsonResponse {
274
type Error = std::io::Error;
275
0 commit comments