Skip to content

Commit

Permalink
Merge pull request #11488 from vegaprotocol/tx-ordering-unit-tests
Browse files Browse the repository at this point in the history
chore: ACs for delayed transactions covered in unit tests
  • Loading branch information
ze97286 authored Jul 24, 2024
2 parents 227afa8 + 72c8de4 commit 2ba50fa
Show file tree
Hide file tree
Showing 5 changed files with 2,348 additions and 16 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@

### 🛠 Improvements

- [](https://github.com/vegaprotocol/vega/issues/xxx)
- [1333](https://github.com/vegaprotocol/core-test-coverage/issues/1333) - Added coverage for `0093-TRTO-001`.
- [1334](https://github.com/vegaprotocol/core-test-coverage/issues/1334) - Added coverage for `0093-TRTO-002`.
- [1335](https://github.com/vegaprotocol/core-test-coverage/issues/1335) - Added coverage for `0093-TRTO-003`.
- [1336](https://github.com/vegaprotocol/core-test-coverage/issues/1336) - Added coverage for `0093-TRTO-004`.
- [1337](https://github.com/vegaprotocol/core-test-coverage/issues/1337) - Added coverage for `0093-TRTO-005`.
- [1338](https://github.com/vegaprotocol/core-test-coverage/issues/1338) - Added coverage for `0093-TRTO-006`.
- [1339](https://github.com/vegaprotocol/core-test-coverage/issues/1339) - Added coverage for `0093-TRTO-007`.
- [1340](https://github.com/vegaprotocol/core-test-coverage/issues/1340) - Added coverage for `0093-TRTO-008`.
- [1341](https://github.com/vegaprotocol/core-test-coverage/issues/1341) - Added coverage for `0093-TRTO-009`.
- [1342](https://github.com/vegaprotocol/core-test-coverage/issues/1342) - Added coverage for `0093-TRTO-010`.
- [1343](https://github.com/vegaprotocol/core-test-coverage/issues/1343) - Added coverage for `0093-TRTO-011`.
- [1344](https://github.com/vegaprotocol/core-test-coverage/issues/1344) - Added coverage for `0093-TRTO-012`.
- [1382](https://github.com/vegaprotocol/core-test-coverage/issues/1382) - Added coverage for `0093-TRTO-013`.

### 🐛 Fixes

Expand Down
5 changes: 5 additions & 0 deletions core/processor/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ var (
}
)

// Codec interface is here for mocking/testing.
type Codec interface {
abci.Codec
}

type Checkpoint interface {
BalanceCheckpoint(ctx context.Context) (*types.CheckpointState, error)
Checkpoint(ctx context.Context, now time.Time) (*types.CheckpointState, error)
Expand Down
Loading

0 comments on commit 2ba50fa

Please sign in to comment.