Skip to content

Commit af75e4d

Browse files
authored
Misc fixes (#2720)
* Update existential deposit Follow-up to use-ink/ink-node#29. * Increase partition size * Update lockfile * Update overlooked `edition`'s * Remove unnecesary toml setting * Remove unneeded todo
1 parent d79f735 commit af75e4d

File tree

8 files changed

+8
-11
lines changed

8 files changed

+8
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ jobs:
584584
strategy:
585585
fail-fast: false
586586
matrix:
587-
partition: [1, 2, 3, 4]
587+
partition: [1, 2, 3, 4, 5]
588588
steps:
589589
- name: Checkout
590590
uses: actions/checkout@v5
@@ -626,7 +626,7 @@ jobs:
626626
--ignore internal/static-buffer \
627627
--ignore internal/mapping \
628628
--ignore public/contract-xcm \
629-
--partition ${{ matrix.partition }}/4 -- \
629+
--partition ${{ matrix.partition }}/5 -- \
630630
cargo contract test --all-features --manifest-path {}
631631
632632
examples-test-mapping:

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/env/src/engine/on_chain/pallet_revive.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -942,8 +942,6 @@ impl TypedEnvBackend for EnvInstance {
942942
}
943943

944944
fn gas_left(&mut self) -> u64 {
945-
// TODO: Change to `ext::gas_left()` when `pallet-revive-uapi` is updated.
946-
// Ref: https://github.com/paritytech/polkadot-sdk/pull/9968
947945
ext::ref_time_left()
948946
}
949947

integration-tests/internal/data-hostfns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "data_hostfns"
33
description = "E2E tests for data related host functions"
44
version = "6.0.0-alpha.4"
55
authors = ["Use Ink <[email protected]>"]
6-
edition = "2021"
6+
edition = "2024"
77
publish = false
88

99
[dependencies]

integration-tests/internal/gas-hostfns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "gas_hostfns"
33
description = "E2E tests for gas related host functions"
44
version = "6.0.0-beta"
55
authors = ["Use Ink <[email protected]>"]
6-
edition = "2021"
6+
edition = "2024"
77
publish = false
88

99
[dependencies]

integration-tests/internal/misc-hostfns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "misc_hostfns"
33
description = "E2E tests for various host functions"
44
version = "6.0.0-beta"
55
authors = ["Use Ink <[email protected]>"]
6-
edition = "2021"
6+
edition = "2024"
77
publish = false
88

99
[dependencies]

integration-tests/internal/system-precompile/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ ink_e2e = { path = "../../../crates/e2e" }
1313

1414
[lib]
1515
path = "lib.rs"
16-
doctest = false
1716

1817
[features]
1918
default = ["std"]

integration-tests/internal/system-precompile/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ mod system_precompile {
5757
// both values are the default values used in the node configurations
5858
// and AssetHub
5959
let native_to_eth_ratio: U256 = 100_000_000.into();
60-
let existential_deposit: U256 = 1_000_000_000.into();
60+
let existential_deposit: U256 = 100_000_000.into();
6161
let expected = native_to_eth_ratio.saturating_mul(existential_deposit);
6262
assert_eq!(min, expected);
6363

0 commit comments

Comments
 (0)