@@ -35,9 +35,9 @@ pub struct GetInfoRequest {}
35
35
#[ derive( Clone , Debug , PartialEq , Eq , Deserialize , Serialize ) ]
36
36
pub struct OptionsSupported {
37
37
/// The minimum number of block confirmations before the LSP accepts a channel as confirmed.
38
- pub minimum_channel_confirmations : u8 ,
38
+ pub min_channel_confirmations : u8 ,
39
39
/// The minimum number of block confirmations before the LSP accepts an on-chain payment as confirmed.
40
- pub minimum_onchain_payment_confirmations : u8 ,
40
+ pub min_onchain_payment_confirmations : u8 ,
41
41
/// Indicates if the LSP supports zero reserve.
42
42
pub supports_zero_channel_reserve : bool ,
43
43
/// Indicates the minimum amount of satoshi that is required for the LSP to accept a payment
@@ -154,10 +154,10 @@ pub struct OrderPayment {
154
154
pub onchain_address : String ,
155
155
/// The minimum number of block confirmations that are required for the on-chain payment to be
156
156
/// considered confirmed.
157
- pub onchain_block_confirmations_required : u8 ,
157
+ pub min_onchain_payment_confirmations : u8 ,
158
158
/// The minimum fee rate for the on-chain payment in case the client wants the payment to be
159
159
/// confirmed without a confirmation.
160
- pub minimum_fee_for_0conf : u8 ,
160
+ pub min_fee_for_0conf : u8 ,
161
161
/// Details regarding a detected on-chain payment.
162
162
pub onchain_payment : OnchainPayment ,
163
163
}
0 commit comments