Skip to content

Commit

Permalink
Remove defunct 'msg lifetime
Browse files Browse the repository at this point in the history
  • Loading branch information
dconnolly committed Jul 8, 2020
1 parent 3d399a7 commit 2a9845e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zebra-consensus/src/verify/redjubjub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl<T: SigType> RedJubjubVerifier<T> {
/// Type alias to clarify that this batch::Item is a RedJubjubItem
pub type RedJubjubItem<T> = batch::Item<T>;

impl<'msg, T: SigType> Service<BatchControl<RedJubjubItem<T>>> for RedJubjubVerifier<T> {
impl<T: SigType> Service<BatchControl<RedJubjubItem<T>>> for RedJubjubVerifier<T> {
type Response = ();
type Error = Error;
type Future = Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'static>>;
Expand Down

0 comments on commit 2a9845e

Please sign in to comment.