Skip to content

Commit

Permalink
update changelog and make tests uniform
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilyjjo committed Oct 29, 2024
1 parent c32e0d1 commit 92599a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions crates/astria-sequencer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Bump penumbra dependencies [#1740](https://github.com/astriaorg/astria/pull/1740).
- Move fee event recording to transaction from block [#1718](https://github.com/astriaorg/astria/pull/1718).
- Nonce replacment for pending transactions is now allowed in the mempool [#1763](https://github.com/astriaorg/astria/pull/1763).

## [1.0.0-rc.2] - 2024-10-23

Expand Down
10 changes: 2 additions & 8 deletions crates/astria-sequencer/src/mempool/transactions_container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1612,14 +1612,8 @@ mod tests {
let account_balances = mock_balances(1, 1);

// create two transactions with same nonce but different hash
let tx_0 = MockTTXBuilder::new()
.nonce(0)
.group(Group::UnbundleableSudo)
.build();
let tx_1 = MockTTXBuilder::new()
.nonce(0)
.group(Group::UnbundleableGeneral)
.build();
let tx_0 = MockTTXBuilder::new().nonce(0).chain_id("test-0").build();
let tx_1 = MockTTXBuilder::new().nonce(0).chain_id("test-1").build();

// add first transaction
pending_txs.add(tx_0.clone(), 0, &account_balances).unwrap();
Expand Down

0 comments on commit 92599a1

Please sign in to comment.