File tree 3 files changed +8
-7
lines changed
contracts/ckb-bitcoin-spv-type-lock/src
tests/src/contracts/ckb_bitcoin_spv_type_lock
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,11 @@ pub fn main() -> Result<()> {
57
57
debug ! ( "create all cells" ) ;
58
58
operations:: create_cells ( & indexes_of_outputs) ?;
59
59
}
60
- ( _, 0 ) => {
61
- debug ! ( "destroy all cells" ) ;
62
- operations:: destroy_cells ( & indexes_of_inputs) ?;
63
- }
60
+ // TODO Disable destroy operations in first version.
61
+ // (_, 0) => {
62
+ // debug!("destroy all cells");
63
+ // operations::destroy_cells(&indexes_of_inputs)?;
64
+ // }
64
65
( 2 , 2 ) => {
65
66
debug ! ( "update a client cell and the info cell" ) ;
66
67
operations:: update_client (
Original file line number Diff line number Diff line change 1
1
mod create;
2
- mod destroy;
2
+ // mod destroy;
3
3
mod reorg;
4
4
mod update;
5
5
6
6
pub ( crate ) use self :: create:: create_cells;
7
- pub ( crate ) use self :: destroy:: destroy_cells;
7
+ // pub(crate) use self::destroy::destroy_cells;
8
8
pub ( crate ) use self :: reorg:: reorg_clients;
9
9
pub ( crate ) use self :: update:: update_client;
Original file line number Diff line number Diff line change 1
1
mod create;
2
- mod destroy;
2
+ // mod destroy;
3
3
mod reorg;
4
4
mod update;
You can’t perform that action at this time.
0 commit comments