Skip to content

Commit 2d0d114

Browse files
committed
remove useless println
1 parent bc5867c commit 2d0d114

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

bindings/src/adaptors/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,6 @@ impl ChainWatchInterface for FFIChainWatchInterface {
273273
// the minimum weight for one tx is 440. So the max number of tx in one block is 9090.
274274
let mut matched_tx_index = [0; 9091];
275275
let mut matched_tx_index_len_ptr: &mut usize = &mut usize::MAX;
276-
println!("coinbase tx in rl {:?}", block.txdata[0]);
277276
(self.filter_block_ptr)(block_bytes.as_ptr(), block_bytes.len(), matched_tx_index.as_mut_ptr(), matched_tx_index_len_ptr as *mut _);
278277
if (matched_tx_index_len_ptr.clone() == usize::MAX) {
279278
panic!("FFI failure. the caller must set the actual serialized length of the tx-indexes in filter_block");

0 commit comments

Comments
 (0)