Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

services/horizon/internal/ingest/processors: Ingest new invoke host operation type #5488

Merged
merged 5 commits into from
Oct 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix tests
  • Loading branch information
tamirms committed Oct 8, 2024
commit 443fa19f05af56a200d258a034467888579a4e0e
Original file line number Diff line number Diff line change
Expand Up @@ -2282,9 +2282,6 @@ func TestDetailsCoversAllOperationTypes(t *testing.T) {
operation: op,
ledgerSequence: 1,
}
// calling Details should panic with unknown operation type
f := func() {
operation.Details()
}
assert.PanicsWithError(t, "unknown operation type: ", f)
_, err := operation.Details()
assert.ErrorContains(t, err, "unknown operation type: ")
}
Loading