You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests from these repositories are failed with the error:
ProviderError: Program log: Instruction: Begin or Continue Transaction from Account. Program failed to complete: Instruction passed to inner instruction is too large (2333 > 1280
Run the local neonstand: cd neon-localstand && sudo docker-compose -f docker-compose-local.yml pull && sudo docker-compose -f docker-compose-local.yml up -d
Increase gas limits in test/ from 800'000 to 80'000'000
Run npm install
Run npx hardhat --network neonLocal test
...
Actual Behavior
The last test is failed with the error:
1) DiamondTest
add most functions and facets:
ProviderError: Program log: Instruction: Begin or Continue Transaction from Account. Program failed to complete: Instruction passed to inner instruction is too large (2333 > 1280)
at HttpProvider.request (node_modules/hardhat/src/internal/core/providers/http.ts:49:19)
at GanacheGasMultiplierProvider.request (node_modules/hardhat/src/internal/core/providers/gas-providers.ts:181:34)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
Bug Description
The description of EIP-2535 - https://eips.ethereum.org/EIPS/eip-2535
There are 4 implementations of the standard:
Tests from these repositories are failed with the error:
Steps to Reproduce
cd neon-localstand && sudo docker-compose -f docker-compose-local.yml pull && sudo docker-compose -f docker-compose-local.yml up -d
./create_new_accounts.sh
cd diamond-1-hardhat
test/
from 800'000 to 80'000'000npm install
npx hardhat --network neonLocal test
...
Actual Behavior
The last test is failed with the error:
Expected Behavior
Test are passed without errors.
Additional Context
The root cause of the issue is in a big-size event.
The work-around can be found there:
https://github.com/afalaleev/diamond-1-hardhat
The changes which help to resolve the issue are in these lines :
afalaleev/diamond-1-hardhat@240b2d3#diff-4a56463ac7d10bcf3b1b9064b573011568ea2e9dde2a3f1fe90c8fc3f1bf296eR74-R76
The text was updated successfully, but these errors were encountered: