File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -163,15 +163,18 @@ func (m *Module) sync(ctx context.Context) error {
163163 if m .state .ChangeId >= changes .Changes [i ].ChangeID {
164164 continue
165165 }
166- addressId , err := m .addressHandler (ctx , changes .Changes [i ].Address )
167- if err != nil {
168- return errors .Wrap (err , "address handler" )
169- }
170166
171167 status , err := storage .ParseStatus (changes .Changes [i ].Status )
172168 if err != nil {
173169 return err
174170 }
171+ addressId , err := m .addressHandler (ctx , changes .Changes [i ].Address )
172+ if err != nil {
173+ if status == storage .StatusNOTVERIFIED {
174+ continue
175+ }
176+ return errors .Wrap (err , "address handler" )
177+ }
175178
176179 if status == storage .StatusPRIMARY {
177180 addressIds [addressId ] = struct {}{}
You can’t perform that action at this time.
0 commit comments