Arjuna Sky Kok
Arjuna Sky Kok
I investigated this error. So in one terminal, I executed `npx hardhat node`. Then in another terminal I executed `npx hardhat dev:deploy-mock-tokens --network localhost`, `npx hardhat dev:deploy-address-provider --network localhost`, `npx...
This is the output of `npx hardhat dev:initialize-lending-pool --pool Aave --network localhost`: 
Okay, thank you. Basically, I need to pass an address to `getLendingPool` method. ```const lendingPool = await contractGetters.getLendingPool("0xc3dd7a5CAC7EbAEa8356da9DE8E04ceFE7E5C075");``` I thought I had to paste the string verbatim. :) Anyway, any...
Okay, I'll archive it.
Fair point. I'll think about what to put there.
The problem persists. ```bash $ nvm install --lts $ nvm use --lts $ node --version v18.14.0 $ rm -rf node_modules $ npm install $ npx hardhat compile $ npx hardhat...
I found the thing that caused this issue. The execute_transaction is removed in a commit in py-evm project: https://github.com/ethereum/py-evm/commit/19923689e8bac1191da5e9667ccc6ff0a1a9692f#diff-2d5d99f4dd8df9b29c7486b27678f9fb The replacement is apply_transaction method. Fixing this issue is easy. Creating...
Because you only test '>1.2.3-alpha.3' and '>=1.2.3-alpha.3' cases (GT and GTE). No cases for prerelease versions with LT and LTE. :)
@rbarrois So without the fix, this is what happens. ``` >>> from semantic_version import NpmSpec, Version >>> NpmSpec("
@balazsotakomaiya , Thanks for the solution. It works!