-
Notifications
You must be signed in to change notification settings - Fork 51
(WIP) feat: EIP-7702 #690
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
(WIP) feat: EIP-7702 #690
Conversation
# Conflicts: # x/evm/keeper/migrations.go # x/evm/migrations/v7/migrate.go # x/evm/module.go # x/evm/types/chain_config.go
|
||
import pytest | ||
from web3 import Web3 | ||
from eth_account import Account |
Check notice
Code scanning / CodeQL
Unused import Note test
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 1 day ago
To fix the problem, simply remove the unused import statement from eth_account import Account
from line 5 of tests/integration_tests/test_set_code_tx.py
. This will clean up the code, reduce unnecessary dependencies, and improve readability. No other changes are required, as the rest of the code does not reference Account
.
@@ -2,7 +2,6 @@ | ||
|
||
import pytest | ||
from web3 import Web3 | ||
from eth_account import Account | ||
from hexbytes import HexBytes | ||
import time | ||
|
from web3 import Web3 | ||
from eth_account import Account | ||
from hexbytes import HexBytes | ||
import time |
Check notice
Code scanning / CodeQL
Unused import Note test
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 1 day ago
To fix the problem, simply remove the unused import statement import time
from line 7 of tests/integration_tests/test_set_code_tx.py
. This will clean up the code and remove an unnecessary dependency, improving readability and maintainability. No other changes are required, as the rest of the code does not depend on the time
module.
@@ -4,7 +4,6 @@ | ||
from web3 import Web3 | ||
from eth_account import Account | ||
from hexbytes import HexBytes | ||
import time | ||
|
||
from .network import setup_custom_ethermint | ||
from .utils import ( |
Review the following changes in direct dependencies. Learn more about Socket for GitHub. |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #690 +/- ##
===========================================
+ Coverage 46.07% 46.23% +0.15%
===========================================
Files 186 189 +3
Lines 18646 18963 +317
===========================================
+ Hits 8592 8768 +176
- Misses 9314 9437 +123
- Partials 740 758 +18
🚀 New features to boost your workflow:
|
Closes: #XXX
Description
For contributor use:
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerFor admin use:
WIP
,R4R
,docs
, etc)