Skip to content

Commit

Permalink
Add derive Clone for Receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
cygnet3 committed Oct 1, 2023
1 parent 03d9d09 commit cd5cb66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/receiving.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl From<Label> for Scalar {
/// It can be used to scan for transaction outputs belonging to us by using the scan_transaction function.
/// It optionally supports labels, which it manages internally.
/// Labels can be added with the add_label function.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Receiver {
version: u8,
scan_pubkey: PublicKey,
Expand Down

0 comments on commit cd5cb66

Please sign in to comment.