openpgp-card: Transaction::card_caps doesn't need to be mut
This commit is contained in:
parent
f659a623d2
commit
315aa7a94c
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ impl Card {
|
||||||
/// before they are automatically closed.)
|
/// before they are automatically closed.)
|
||||||
pub struct Transaction<'a> {
|
pub struct Transaction<'a> {
|
||||||
tx: Box<dyn CardTransaction + Send + Sync + 'a>,
|
tx: Box<dyn CardTransaction + Send + Sync + 'a>,
|
||||||
card_caps: &'a mut Option<CardCaps>,
|
card_caps: &'a Option<CardCaps>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Transaction<'a> {
|
impl<'a> Transaction<'a> {
|
||||||
|
|
Loading…
Reference in a new issue