We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 189e3b5 commit 5d67f0aCopy full SHA for 5d67f0a
src/aleph/sdk/chains/evm.py
@@ -12,8 +12,9 @@
12
class EVMAccount(ETHAccount):
13
def __init__(self, private_key: bytes, chain: Optional[Chain] = None):
14
super().__init__(private_key, chain)
15
- if chain:
16
- self.CHAIN = chain
+ # Decide if we have to send also the specified chain value or always use ETH
+ # if chain:
17
+ # self.CHAIN = chain
18
19
@staticmethod
20
def from_mnemonic(mnemonic: str, chain: Optional[Chain] = None) -> "EVMAccount":
0 commit comments