Files
app-ethereum/tests/ragger/ethereum_client/setting.py
2022-08-09 17:49:05 +02:00

16 lines
311 B
Python

from enum import IntEnum, auto
from typing import List
class SettingType(IntEnum):
BLIND_SIGNING = 0,
DEBUG_DATA = auto()
NONCE = auto()
VERBOSE_EIP712 = auto()
class SettingImpl:
devices: List[str]
value: bool
def __init__(self, devs: List[str]):
self.devices = devs