node: Allow "msu" in node

This commit is contained in:
Csongor Kiss 2022-06-27 19:36:57 +01:00 committed by Csongor Kiss
parent be38cf5d7e
commit 3328a86778
1 changed files with 1 additions and 1 deletions

View File

@ -488,7 +488,7 @@ func (s *SolanaWatcher) fetchMessageAccount(ctx context.Context, logger *zap.Log
}
data := info.Value.Data.GetBinary()
if string(data[:3]) != "msg" {
if string(data[:3]) != "msg" && string(data[:3]) != "msu" {
p2p.DefaultRegistry.AddErrorCount(vaa.ChainIDSolana, 1)
solanaConnectionErrors.WithLabelValues(string(s.commitment), "bad_account_data").Inc()
logger.Error("account is not a message account",