Skip to content

Commit 5d67f0a

Browse files
author
Andres D. Molins
committed
Fix: Disable temporarily the chain field change to test it deeply.
1 parent 189e3b5 commit 5d67f0a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/aleph/sdk/chains/evm.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
class EVMAccount(ETHAccount):
1313
def __init__(self, private_key: bytes, chain: Optional[Chain] = None):
1414
super().__init__(private_key, chain)
15-
if chain:
16-
self.CHAIN = chain
15+
# Decide if we have to send also the specified chain value or always use ETH
16+
# if chain:
17+
# self.CHAIN = chain
1718

1819
@staticmethod
1920
def from_mnemonic(mnemonic: str, chain: Optional[Chain] = None) -> "EVMAccount":

0 commit comments

Comments
 (0)