We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96dbe72 commit c87d93bCopy full SHA for c87d93b
wormhole-connect/src/hooks/useDeliveryStatus.ts
@@ -34,7 +34,9 @@ const useDeliveryStatus = (): void => {
34
if (
35
!signedMessage ||
36
route !== Route.NttRelay ||
37
- !isEvmChain(signedMessage.toChain) // Currently, only EVM chains support standard relayer
+ // Currently, only EVM chains support standard relayer
38
+ !isEvmChain(signedMessage.toChain) ||
39
+ !isEvmChain(signedMessage.fromChain)
40
) {
41
return;
42
}
0 commit comments