Skip to content

Commit 5912134

Browse files
authored
Merge pull request #2455 from CosmWasm/co/fix-benchmark
Fix benchmark capabilities
2 parents 12c927d + 6118854 commit 5912134

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/CAPABILITIES-BUILT-IN.md

+4
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ might define others.
2929
running CosmWasm `2.0.0` or higher support this.
3030
- `cosmwasm_2_1` enables `IbcMsg::WriteAcknowledgement`. Only chains running
3131
CosmWasm `2.1.0` or higher support this.
32+
- `cosmwasm_2_2` enables an optional additional `MigrateInfo` parameter for the
33+
`migrate` entrypoint, as well as IBC Fees support with `IbcMsg::PayPacketFee`,
34+
`IbcMsg::PayPacketFeeAsync` and `IbcQuery::FeeEnabledChannel`. Only chains
35+
running CosmWasm `2.2.0` or higher support this.

packages/vm/benches/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const MEMORY_CACHE_SIZE: Size = Size::mebi(200);
3131
const INSTANTIATION_THREADS: usize = 128;
3232
const CONTRACTS: u64 = 10;
3333

34-
const DEFAULT_CAPABILITIES: &str = "cosmwasm_1_1,cosmwasm_1_2,cosmwasm_1_3,iterator,staking";
34+
const DEFAULT_CAPABILITIES: &str = "cosmwasm_1_1,cosmwasm_1_2,cosmwasm_1_3,cosmwasm_1_4,cosmwasm_2_0,cosmwasm_2_1,cosmwasm_2_2,iterator,staking";
3535
static HACKATOM: &[u8] = include_bytes!("../testdata/hackatom.wasm");
3636
static CYBERPUNK: &[u8] = include_bytes!("../testdata/cyberpunk.wasm");
3737

0 commit comments

Comments
 (0)