File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def _load_account(
143143 # )
144144 # )
145145 # New Ledger Implementation
146- elif config and config .address and config .type == AccountType .EXTERNAL . value :
146+ elif config and config .address and config .type == AccountType .EXTERNAL :
147147 logger .debug ("Using remote account" )
148148 ledger_account = LedgerETHAccount .from_address (config .address )
149149 if ledger_account :
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ class MainConfiguration(BaseModel):
338338
339339 if "path" in config_data and (
340340 "type" not in config_data
341- or config_data ["type" ] == AccountType .INTERNAL . value
341+ or config_data ["type" ] == AccountType .INTERNAL
342342 ):
343343 settings .PRIVATE_KEY_FILE = Path (config_data ["path" ])
344344 except json .JSONDecodeError :
You can’t perform that action at this time.
0 commit comments