Skip to content

Commit

Permalink
fix proto field, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanoroshiba committed Feb 6, 2025
1 parent 21fa040 commit 46063b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.

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

6 changes: 6 additions & 0 deletions crates/astria-sequencer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added transaction status ABCI query [#1955](https://github.com/astriaorg/astria/pull/1955).

### Changed

- Bump MSRV to 1.83.0 [#1857](https://github.com/astriaorg/astria/pull/1857).
Expand All @@ -20,6 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Use bridge address to determine asset in bridge unlock cost estimation instead
of signer [#1905](https://github.com/astriaorg/astria/pull/1905).
- Add more thorough unit tests for all actions [#1916](https://github.com/astriaorg/astria/pull/1916).
- Change sequencer client to poll transaction status ABCI query so that it doesn't
loop indefinitely [#1955](https://github.com/astriaorg/astria/pull/1955).

## [1.0.0] - 2024-10-25

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package astria.protocol.transaction.v1;

// The response payload for a `transaction/status` ABCI query
message TransactionStatusResponse {
TransactionStatus status = 2;
TransactionStatus status = 1;
}

enum TransactionStatus {
Expand Down

0 comments on commit 46063b0

Please sign in to comment.