Skip to content

Commit

Permalink
Make token optional
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Jul 23, 2024
1 parent d54ce80 commit 0e647a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lsps1/msgs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub struct OrderParameters {
/// Indicates how long the channel is leased for in block time.
pub channel_expiry_blocks: u32,
/// May contain arbitrary associated data like a coupon code or a authentication token.
pub token: String,
pub token: Option<String>,
/// The address where the LSP will send the funds if the order fails.
pub refund_onchain_address: Option<Address<NetworkUnchecked>>,
/// Indicates if the channel should be announced to the network.
Expand Down

0 comments on commit 0e647a5

Please sign in to comment.