Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/

(The actual consensus tightening will happen after a fork, the height is yet to be decided.)

### Fixed
- Mempool:
- Fixed an issue where the mempool wouldn't track non-UTXO dependencies between transactions, which could
prevent e.g. several token management transactions from being included in the same block.

## [1.3.1] - 2026-06-03

### Fixed
Expand Down
5 changes: 5 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions blockprod/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ pos-accounting = { path = "../pos-accounting" }
storage-inmemory = { path = "../storage/inmemory" }
test-utils = { path = "../test-utils" }

ctor.workspace = true
rstest.workspace = true
rstest_reuse.workspace = true
static_assertions.workspace = true
strum.workspace = true
1 change: 1 addition & 0 deletions blockprod/src/detail/tests/produce_block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

mod tx_selection_by_deps;
mod tx_selection_mtp;

use std::{sync::Arc, time::Duration};
Expand Down
Loading
Loading