solana: fix bug w/ properly binding None/None values accidentally matching None/Some and Some/None
This commit is contained in:
parent
cf71b48492
commit
756c8419ae
|
@ -462,7 +462,7 @@ impl Module for Solana {
|
||||||
Pubkey::from_str(address).unwrap(),
|
Pubkey::from_str(address).unwrap(),
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
(None, None) => {
|
(&None, &None) => {
|
||||||
// Use the transaction account
|
// Use the transaction account
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue