You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bindings/src/adaptors/mod.rs
+147-1Lines changed: 147 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,9 @@ use std::{
7
7
};
8
8
9
9
use bitcoin::hash_types::{BlockHash,Txid};
10
-
use bitcoin::{blockdata::transaction::Transaction, blockdata::script::Script, blockdata::block::Block, consensus::serialize as bitcoin_serialize,Network};
10
+
use bitcoin::{blockdata::transaction::Transaction, blockdata::script::Script, blockdata::block::Block, consensus::serialize as bitcoin_serialize,consensus::deserialize as bitcoin_deserialize,Network};
let filter_block_ref = unsafe_block!("function pointer lives as long as ChainWatchInterface and it points to valid data" => filter_block_ptr.as_ref());
162
167
let reentered_ref = unsafe_block!("function pointer lives as long as ChainWatchInterface and it points to valid data" => reentered_ptr.as_ref());
163
168
169
+
let get_node_secret_ref = unsafe_block!("function pointer lives as long as KeysInterface and it points to valid data" => get_node_secret_ptr.as_ref());
170
+
let get_destination_script_ref = unsafe_block!("function pointer lives as long as KeysInterface and it points to valid data" => get_destination_script_ptr.as_ref());
171
+
let get_shutdown_key_ref = unsafe_block!("function pointer lives as long as KeysInterface and it points to valid data" => get_shutdown_key_ptr.as_ref());
172
+
let get_channel_keys_ref = unsafe_block!("function pointer lives as long as KeysInterface and it points to valid data" => get_channel_keys_ptr.as_ref());
173
+
let get_onion_rand_ref = unsafe_block!("function pointer lives as long as KeysInterface and it points to valid data" => get_onion_rand_ptr.as_ref());
174
+
let get_channel_id_ref = unsafe_block!("function pointer lives as long as KeysInterface and it points to valid data" => get_channel_id_ptr.as_ref());
0 commit comments