X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=fuzz%2Fsrc%2Frouter.rs;h=9f4fd512ca25a9e4112d20588edfa149ad235cc7;hb=3b3a4ba0a6e60e90792bf78d2c5d9cd5c59a5ddb;hp=27c5ee2b7ca108a19bbe9f7ca3c5a7a5f91d01ae;hpb=1af705579ba5b19ffcbd5ee95f8841cf5236e2b9;p=rust-lightning diff --git a/fuzz/src/router.rs b/fuzz/src/router.rs index 27c5ee2b..9f4fd512 100644 --- a/fuzz/src/router.rs +++ b/fuzz/src/router.rs @@ -23,7 +23,7 @@ use lightning::util::ser::Readable; use lightning::routing::network_graph::{NetworkGraph, RoutingFees}; use bitcoin::hashes::Hash; -use bitcoin::secp256k1::key::PublicKey; +use bitcoin::secp256k1::PublicKey; use bitcoin::network::constants::Network; use bitcoin::blockdata::constants::genesis_block; @@ -196,7 +196,7 @@ pub fn do_test(data: &[u8], out: Out) { }, 4 => { let short_channel_id = slice_to_be64(get_slice!(8)); - net_graph.close_channel_from_update(short_channel_id, false); + net_graph.channel_failed(short_channel_id, false); }, _ if node_pks.is_empty() => {}, _ => { @@ -222,12 +222,13 @@ pub fn do_test(data: &[u8], out: Out) { channel_type: None, short_channel_id: Some(scid), inbound_scid_alias: None, + outbound_scid_alias: None, channel_value_satoshis: capacity, user_channel_id: 0, inbound_capacity_msat: 0, unspendable_punishment_reserve: None, confirmations_required: None, force_close_spend_delay: None, - is_outbound: true, is_funding_locked: true, + is_outbound: true, is_channel_ready: true, is_usable: true, is_public: true, balance_msat: 0, outbound_capacity_msat: capacity.saturating_mul(1000),