solana: fix bug w/ properly binding None/None values accidentally matching None/Some and Some/None

This commit is contained in:
Ryan Heywood 2024-12-17 14:45:03 -05:00
parent cf71b48492
commit 756c8419ae
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ impl Module for Solana {
Pubkey::from_str(address).unwrap(),
))
}
(None, None) => {
(&None, &None) => {
// Use the transaction account
None
}