Skip to content

Commit

Permalink
fix(ampd): multisig handler
Browse files Browse the repository at this point in the history
  • Loading branch information
fish-sammy committed Jan 29, 2025
1 parent 970e5ba commit 3e408e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ampd/src/handlers/multisig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ where
match pub_keys.get(&self.verifier) {
Some(pub_key) => {
let key_type = match pub_key {
PublicKey::Secp256k1(_) => tofnd::Algorithm::Ed25519,
PublicKey::Ed25519(_) => tofnd::Algorithm::Ecdsa,
PublicKey::Secp256k1(_) => tofnd::Algorithm::Ecdsa,
PublicKey::Ed25519(_) => tofnd::Algorithm::Ed25519,
};

let signature = self
Expand Down

0 comments on commit 3e408e0

Please sign in to comment.