Skip to content

Commit 622dc0a

Browse files
committed
removed more white spaces
1 parent 5c1e2a2 commit 622dc0a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/ln/channelmanager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ impl ChannelManager {
314314
monitor: monitor.clone(),
315315
chain_monitor,
316316
tx_broadcaster,
317-
317+
318318
latest_block_height: AtomicUsize::new(0), //TODO: Get an init value (generally need to replay recent chain on chain_monitor registration)
319319
secp_ctx,
320320

src/util/configurations.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// This is the main user configuration
22
/// This struct should contain all user customizable options as this is passed to the channel to be accessed
3-
#[derive(Copy, Clone, Debug)]
3+
#[derive(Copy, Clone, Debug)]
44
pub struct UserConfigurations{
55
/// optional user spesefied channel limits
66
/// These should stay the same for a channel and cannot change during the life of a channel
@@ -54,15 +54,15 @@ impl ChannelLimits {
5454
#[derive(Copy, Clone, Debug)]
5555
pub struct ChannelOptions{
5656
/// Amount (in millionths of a satoshi) channel will charge per transferred satoshi.
57-
pub fee_proportional_millionths : u32,
57+
pub fee_proportional_millionths : u32,
5858
///should we require the channel be annouced or not
5959
pub annouce_channel : bool,
6060
///do we allow incomming channel to be announced
6161
pub allow_annouce_channel : bool,
6262
}
6363
impl ChannelOptions {
64-
/// creating a struct with values.
65-
/// fee_proportional_millionths should be changed afterwords
64+
/// creating a struct with values.
65+
/// fee_proportional_millionths should be changed afterwords
6666
pub fn new() -> Self{
6767
ChannelOptions {
6868
fee_proportional_millionths : 0,

0 commit comments

Comments
 (0)