Fix enable transer redeemed (#1040)

This commit is contained in:
ftocal 2024-01-24 15:56:43 -03:00 committed by GitHub
parent 49f9bedd29
commit 6145453fd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -63,7 +63,8 @@ func NewNotificationEvent(log *zap.Logger) ConverterFunc {
switch notification.Event {
case events.SignedVaaType,
events.LogMessagePublishedType,
events.EvmTransactionFoundType:
events.EvmTransactionFoundType,
events.TransferRedeemedType:
//message is valid
default:
log.Debug("Skip event type", zap.String("trackId", notification.TrackID), zap.String("type", notification.Event))
@ -189,6 +190,7 @@ func NewNotificationEvent(log *zap.Logger) ConverterFunc {
},
}, nil
}
return nil, nil
}
}