From ada2e4e961d04512e9eb77973531b486a111e4c5 Mon Sep 17 00:00:00 2001 From: evalir Date: Mon, 29 Sep 2025 15:05:35 +0200 Subject: [PATCH 1/2] chore(deps): bump sdk to 11.1 To solve the test-utils gating thing --- Cargo.toml | 4 ++-- src/utils/calc.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c79641a..156b6eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ repository = "https://github.com/init4tech/bin-base" init4-from-env-derive = "0.1.0" # Signet -signet-constants = { version = "0.11.0" } -signet-tx-cache = { version = "0.11.0", optional = true } +signet-constants = { version = "0.11.1" } +signet-tx-cache = { version = "0.11.1", optional = true } # alloy alloy = { version = "1.0.35", optional = true, default-features = false, features = ["std", "signer-local", "consensus", "network"] } diff --git a/src/utils/calc.rs b/src/utils/calc.rs index 7197b04..f2828af 100644 --- a/src/utils/calc.rs +++ b/src/utils/calc.rs @@ -311,6 +311,7 @@ impl From for SlotCalculator { fn from(value: KnownChains) -> Self { match value { KnownChains::Pecorino => SlotCalculator::pecorino_host(), + KnownChains::Test => SlotCalculator::new(12, 0, 12), } } } From 5beeb440bf4b94ef83beb0e9b4372a7bf9f644a5 Mon Sep 17 00:00:00 2001 From: evalir Date: Mon, 29 Sep 2025 15:11:18 +0200 Subject: [PATCH 2/2] chore: bump patch --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 156b6eb..f5f6ded 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "init4-bin-base" description = "Internal utilities for binaries produced by the init4 team" keywords = ["init4", "bin", "base"] -version = "0.13.0" +version = "0.13.1" edition = "2021" rust-version = "1.85" authors = ["init4", "James Prestwich", "evalir"]