Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit 7b609bd

Browse files
committed
Fix build warnings
1 parent 6f8b69e commit 7b609bd

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#![recursion_limit = "256"]
1515
// Coding conventions
16+
#![allow(dead_code, deprecated)]
1617
#![deny(
1718
non_upper_case_globals,
1819
non_camel_case_types,

src/stashd/index/btree.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use amplify::IoError;
2020
use bp::dbc::{Anchor, AnchorId};
2121
use commit_verify::lnpbp4::MerkleBlock;
2222
use microservices::FileFormat;
23-
use rgb::{BundleId, NodeId};
23+
use rgb::NodeId;
2424
use strict_encoding::{StrictDecode, StrictEncode};
2525

2626
use super::Index;
@@ -192,10 +192,10 @@ impl Index for BTreeIndex {
192192
node_id: NodeId,
193193
) -> Result<bool, Self::Error> {
194194
let anchor_id = anchor.anchor_id();
195-
for commitment in &anchor.lnpbp4_proof {
196-
let bundle_id = BundleId::from(commitment);
197-
self.index.node_anchors.insert(node_id, anchor_id);
198-
}
195+
self.index.node_anchors.insert(node_id, anchor_id);
196+
// for commitment in &anchor.lnpbp4_proof {
197+
// let bundle_id = BundleId::from(commitment);
198+
// }
199199
self.store()?;
200200
Ok(true)
201201
}

src/stashd/stash.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ impl Stash for Runtime {
302302
.expect("RGB commitment procedure is broken");
303303
}
304304
self.storage.add_anchor(&anchor)?;
305-
for (contract_id, bundle) in map {
305+
for (_, bundle) in map {
306306
for transition in bundle.known_transitions() {
307307
self.indexer.index_anchor(&anchor, transition.node_id())?;
308308
}

0 commit comments

Comments
 (0)