Skip to content

Commit

Permalink
allow to clone invoices
Browse files Browse the repository at this point in the history
  • Loading branch information
joksas committed Aug 21, 2024
1 parent 187e533 commit 3cef674
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["RSS Blue", "Dovydas Joksas"]
name = "v4v"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
description = "Value-for-value helper utilities for Podcasting 2.0"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/alby/webhooks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub fn verify_signature<HM: HeaderMap>(
}

/// Alby invoice obtained via webhook request.
#[derive(Debug, serde::Deserialize)]
#[derive(Debug, serde::Deserialize, Clone)]
pub struct AlbyInvoice {
/// 24 alphanumeric characters
pub identifier: String,
Expand Down
2 changes: 1 addition & 1 deletion src/pc20/tlv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ struct UntrustedRecord {
}

/// Well-formed bLIP-10 TLV record.
#[derive(Debug, serde::Serialize)]
#[derive(Debug, serde::Serialize, Clone)]
pub struct Record {
/// ACTION
pub action: Action,
Expand Down

0 comments on commit 3cef674

Please sign in to comment.