Skip to content

Commit

Permalink
clippy version mismatch?
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Jul 15, 2024
1 parent f2acfbe commit 33d48e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions claims/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ pub mod pallet {
priority: PRIORITY,
requires: vec![],
provides: vec![("claims", signer).encode()],
longevity: TransactionLongevity::max_value(),
longevity: TransactionLongevity::MAX,
propagate: true,
})
}
Expand Down Expand Up @@ -1317,7 +1317,7 @@ mod tests {
priority: 100,
requires: vec![],
provides: vec![("claims", eth(&alice())).encode()],
longevity: TransactionLongevity::max_value(),
longevity: TransactionLongevity::MAX,
propagate: true,
})
);
Expand Down Expand Up @@ -1350,7 +1350,7 @@ mod tests {
priority: 100,
requires: vec![],
provides: vec![("claims", eth(&dave())).encode()],
longevity: TransactionLongevity::max_value(),
longevity: TransactionLongevity::MAX,
propagate: true,
})
);
Expand Down

0 comments on commit 33d48e3

Please sign in to comment.