mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
fix key fn not being called in getter
This commit is contained in:
parent
441bf62e11
commit
f976bc86ac
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ impl<N: Network, D: Db> MultisigsDb<N, D> {
|
|||
getter: &G,
|
||||
tx: <N::Transaction as Transaction<N>>::Id,
|
||||
) -> Option<[u8; 32]> {
|
||||
getter.get(tx.as_ref()).map(|id| id.try_into().unwrap())
|
||||
getter.get(Self::resolved_key(tx.as_ref())).map(|id| id.try_into().unwrap())
|
||||
}
|
||||
pub fn plan_by_key_with_self_change<G: Get>(
|
||||
getter: &G,
|
||||
|
|
Loading…
Reference in a new issue