Skip to content

Commit 2b4f648

Browse files
authored
async-signature: re-add 'static bound (#1392)
Accidentally removed in #1375
1 parent 5b2f9cb commit 2b4f648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

async-signature/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use async_trait::async_trait;
1919
///
2020
/// This trait is an async equivalent of the [`signature::Signer`] trait.
2121
#[async_trait(?Send)]
22-
pub trait AsyncSigner<S> {
22+
pub trait AsyncSigner<S: 'static> {
2323
/// Attempt to sign the given message, returning a digital signature on
2424
/// success, or an error if something went wrong.
2525
///

0 commit comments

Comments
 (0)