Skip to content

Commit

Permalink
change Evm class typing
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-volz committed Nov 5, 2023
1 parent 882f280 commit 29bb3dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion defichain/node/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from defichain.node.modules.accounts import Accounts
from defichain.node.modules.blockchain import Blockchain
from defichain.node.modules.control import Control
from defichain.node.modules.evm import EVM
from defichain.node.modules.evm import Evm
from defichain.node.modules.generating import Generating
from defichain.node.modules.loan import Loan
from defichain.node.modules.masternodes import Masternodes
Expand Down
2 changes: 1 addition & 1 deletion defichain/node/modules/evm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class EVM:
class Evm:
def __init__(self, node):
self._node = node

Expand Down
4 changes: 2 additions & 2 deletions defichain/node/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .modules.accounts import Accounts
from .modules.blockchain import Blockchain
from .modules.control import Control
from .modules.evm import EVM
from .modules.evm import Evm
from .modules.generating import Generating
from .modules.loan import Loan
from .modules.masternodes import Masternodes
Expand Down Expand Up @@ -94,7 +94,7 @@ def __init__(self, user: str, password: str, url: str = "127.0.0.1", port: int =
self.accounts = Accounts(self)
self.blockchain = Blockchain(self)
self.control = Control(self)
self.evm = EVM(self)
self.evm = Evm(self)
self.generating = Generating(self)
self.icxorderbook = None
self.loan = Loan(self)
Expand Down

0 comments on commit 29bb3dc

Please sign in to comment.