Commit c74d240 1 parent 75f5363 commit c74d240 Copy full SHA for c74d240
File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3324,7 +3324,8 @@ mod tests {
3324
3324
// should be good
3325
3325
. unwrap ( ) ;
3326
3326
3327
- // TODO: uncomment this when xmtp-node-go is updated to recognize Passkey MemberIdentifiers
3327
+ // TODO: I'll uncomment this as soon as PR 1733 goes live.
3328
+ // Tested locally with this uncommented and it works.
3328
3329
// alex.apply_signature_request(sig_request).await.unwrap();
3329
3330
}
3330
3331
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ impl SignatureRequest {
207
207
pub fn missing_address_signatures ( & self ) -> Vec < & MemberIdentifier > {
208
208
self . missing_signatures ( )
209
209
. into_iter ( )
210
- . filter ( |member| member. kind ( ) == MemberKind :: Ethereum )
210
+ . filter ( |member| matches ! ( member. kind( ) , MemberKind :: Ethereum | MemberKind :: Passkey ) )
211
211
. collect ( )
212
212
}
213
213
You can’t perform that action at this time.
0 commit comments