This repository was archived by the owner on Dec 9, 2023. It is now read-only.
File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 13
13
14
14
#![ recursion_limit = "256" ]
15
15
// Coding conventions
16
+ #![ allow( dead_code, deprecated) ]
16
17
#![ deny(
17
18
non_upper_case_globals,
18
19
non_camel_case_types,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ use amplify::IoError;
20
20
use bp:: dbc:: { Anchor , AnchorId } ;
21
21
use commit_verify:: lnpbp4:: MerkleBlock ;
22
22
use microservices:: FileFormat ;
23
- use rgb:: { BundleId , NodeId } ;
23
+ use rgb:: NodeId ;
24
24
use strict_encoding:: { StrictDecode , StrictEncode } ;
25
25
26
26
use super :: Index ;
@@ -192,10 +192,10 @@ impl Index for BTreeIndex {
192
192
node_id : NodeId ,
193
193
) -> Result < bool , Self :: Error > {
194
194
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
+ // }
199
199
self . store ( ) ?;
200
200
Ok ( true )
201
201
}
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ impl Stash for Runtime {
302
302
. expect ( "RGB commitment procedure is broken" ) ;
303
303
}
304
304
self . storage . add_anchor ( & anchor) ?;
305
- for ( contract_id , bundle) in map {
305
+ for ( _ , bundle) in map {
306
306
for transition in bundle. known_transitions ( ) {
307
307
self . indexer . index_anchor ( & anchor, transition. node_id ( ) ) ?;
308
308
}
You can’t perform that action at this time.
0 commit comments