Skip to content

Commit

Permalink
fix missing mints
Browse files Browse the repository at this point in the history
  • Loading branch information
billettc committed Nov 8, 2023
1 parent f42d519 commit 67b8249
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions data/pb/hivemapper/v1/hivemapper.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions data/sinker.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ func (s *Sinker) HandleBlockScopedData(ctx context.Context, data *pbsubstreamsrp
return fmt.Errorf("handle split payments: %w", err)
}

if err := s.db.HandleNoneSplitPayments(dbBlockID, moduleOutput.NoSplitPayments); err != nil {
return fmt.Errorf("handle split payments: %w", err)
}

if err := s.db.HandleTransfers(dbBlockID, moduleOutput.Transfers); err != nil {
return fmt.Errorf("handle transfers: %w", err)
}
Expand Down

0 comments on commit 67b8249

Please sign in to comment.