Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ const DEFAULT_STORAGE_DEPOSIT_LIMIT: u128 = 10_000_000_000_000;
type E2EResult<T> = Result<T, Box<dyn Error>>;

#[ink_e2e::test]
// TODO: (@davidsemakula) Re-enable when "no space left" CI issue is fixed
// See https://github.com/use-ink/ink/issues/2458 for details.
// This test consistently triggers the issue in CI when running `npm install` for hardhat
// scripts.
#[ignore]
async fn solidity_calls_ink_works<Client: E2EBackend>(
mut client: Client,
) -> E2EResult<()> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
require("hardhat-resolc")
require("hardhat-revive-node")
require("@nomicfoundation/hardhat-ethers");
require("@parity/hardhat-polkadot");

const config = {
solidity: "0.8.28",
Expand All @@ -16,12 +15,7 @@ const config = {
},
},
resolc: {
compilerSource: 'binary',
settings: {
evmVersion: "cancun",
compilerPath: "resolc",
standardJson: true,
},
compilerSource: 'npm',
},
paths: {
cache: "./cache-pvm",
Expand Down
Loading
Loading