Skip to content

Commit

Permalink
fix key fn not being called in getter
Browse files Browse the repository at this point in the history
  • Loading branch information
econsta committed Oct 20, 2023
1 parent 441bf62 commit 6f57628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor/src/multisigs/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6f57628

Please sign in to comment.