Skip to content

Commit a23338d

Browse files
mudigalclaude
andcommitted
fix(sdk): add runtime-benchmarks and try-runtime features for workspace consistency
The SDK needs runtime-benchmarks and try-runtime features to pass zepter checks in CI. These features propagate to pallet-transaction-storage but are no-ops for the SDK itself. Fixes check-fmt CI failure. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 6c33e6b commit a23338d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

sdk/rust/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@ ink = [
6969
# Enable DAG serialization features
7070
serde-support = ["serde"]
7171

72+
# Runtime benchmarking (no-op for SDK, but required for workspace consistency)
73+
runtime-benchmarks = [
74+
"pallet-transaction-storage/runtime-benchmarks",
75+
]
76+
77+
# Try-runtime support (no-op for SDK, but required for workspace consistency)
78+
try-runtime = [
79+
"pallet-transaction-storage/try-runtime",
80+
]
81+
7282
# Note: Examples and integration tests are not included in the repository because they
7383
# require metadata files from a running Bulletin Chain node and would cause CI failures.
7484
# Complete example code is available in the SDK book documentation (docs/sdk-book/).

0 commit comments

Comments
 (0)