Skip to content

Commit

Permalink
add transferdomain constants
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-volz committed Nov 5, 2023
1 parent 29bb3dc commit 28e2ff7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion defichain/node/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Just to be present: Node
from defichain.node.modules.accounts import Accounts
from defichain.node.modules.accounts import Accounts, DVM, EVM
from defichain.node.modules.blockchain import Blockchain
from defichain.node.modules.control import Control
from defichain.node.modules.evm import Evm
Expand Down
2 changes: 2 additions & 0 deletions defichain/node/modules/accounts.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from ..util import BuildJson

DVM: int = 2
EVM: int = 3

class Accounts:
def __init__(self, node):
Expand Down

0 comments on commit 28e2ff7

Please sign in to comment.