Skip to content

Commit

Permalink
MultiSig v7 event support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Neopallium committed Aug 13, 2024
1 parent 0262f3c commit 4d3fed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/polymesh-api-client-extras/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ pub async fn get_created_ids(res: &mut TransactionResults) -> Result<Vec<Created
RuntimeEvent::Identity(IdentityEvent::ChildDidCreated(_, id, ..)) => {
ids.push(CreatedIds::ChildIdentityCreated(*id));
}
RuntimeEvent::MultiSig(MultiSigEvent::MultiSigCreated(_, id, ..)) => {
ids.push(CreatedIds::MultiSigCreated(*id));
RuntimeEvent::MultiSig(MultiSigEvent::MultiSigCreated { multisig, .. }) => {
ids.push(CreatedIds::MultiSigCreated(*multisig));
}
_ => (),
}
Expand Down

0 comments on commit 4d3fed6

Please sign in to comment.