Skip to content

Commit

Permalink
Fixed: catchup identity state transfers operation type
Browse files Browse the repository at this point in the history
  • Loading branch information
olegfomenko committed Dec 12, 2023
1 parent 7fbad1d commit 072c7df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/ingester/state_transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (s *stateIngester) catchup(ctx context.Context) error {
}

for _, op := range operations.Operation {
if op.Status == rarimocore.OpStatus_SIGNED && op.OperationType == rarimocore.OpType_IDENTITY_DEFAULT_TRANSFER {
if op.Status == rarimocore.OpStatus_SIGNED && op.OperationType == rarimocore.OpType_IDENTITY_STATE_TRANSFER {
if err := s.trySave(ctx, op); err != nil {
return err
}
Expand Down

0 comments on commit 072c7df

Please sign in to comment.