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 8471644 commit b923e1aCopy full SHA for b923e1a
lightning-block-sync/src/convert.rs
@@ -247,10 +247,12 @@ impl TryInto<BlockHash> for JsonResponse {
247
/// The REST `getutxos` endpoint retuns a whole pile of data we don't care about and one bit we do
248
/// - whether the `hit bitmap` field had any entries. Thus we condense the result down into only
249
/// that.
250
+#[cfg(feature = "rest-client")]
251
pub(crate) struct GetUtxosResponse {
252
pub(crate) hit_bitmap_nonempty: bool
253
}
254
255
256
impl TryInto<GetUtxosResponse> for JsonResponse {
257
type Error = std::io::Error;
258
0 commit comments