Skip to content

Commit c39503c

Browse files
Remove some Clones (r2585555720, r2602558531)
1 parent 20baffe commit c39503c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ fn build_bundle<B, R: RngCore>(
10721072
/// Marker trait representing bundle signatures in the process of being created.
10731073
pub trait InProgressSignatures: fmt::Debug {
10741074
/// The authorization type of an Orchard action in the process of being authorized.
1075-
type SpendAuth: fmt::Debug + Clone;
1075+
type SpendAuth: fmt::Debug;
10761076
}
10771077

10781078
/// Marker for a bundle in the process of being built.

src/bundle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ impl Flags {
202202
/// Defines the authorization type of an Orchard bundle.
203203
pub trait Authorization: fmt::Debug {
204204
/// The authorization type of an Orchard action.
205-
type SpendAuth: fmt::Debug + Clone;
205+
type SpendAuth: fmt::Debug;
206206
}
207207

208208
/// A bundle of actions to be applied to the ledger.

0 commit comments

Comments
 (0)