blackified

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2023-05-24 09:34:15 +02:00
parent 6a7153f21f
commit 962244b7ee
No known key found for this signature in database
4 changed files with 10 additions and 16 deletions

View File

@ -81,9 +81,7 @@ class ApplicationLogic(BaseApplication):
chain_id = known_chain["chain_id"] chain_id = known_chain["chain_id"]
if known_chain["is_synced"]: if known_chain["is_synced"]:
msg = ( msg = f"Got invalid InitChain ABCI request ({genesis}) - the chain {chain_id} is already synced."
f"Got invalid InitChain ABCI request ({genesis}) - the chain {chain_id} is already synced."
)
logger.error(msg) logger.error(msg)
sys.exit(1) sys.exit(1)
if chain_id != genesis.chain_id: if chain_id != genesis.chain_id:

View File

@ -61,9 +61,7 @@ class Validator:
if tx.operation != Transaction.COMPOSE: if tx.operation != Transaction.COMPOSE:
asset_id = tx.get_asset_id(input_txs) asset_id = tx.get_asset_id(input_txs)
if asset_id != Transaction.read_out_asset_id(tx): if asset_id != Transaction.read_out_asset_id(tx):
raise AssetIdMismatch( raise AssetIdMismatch(("The asset id of the input does not match the asset id of the transaction"))
("The asset id of the input does not match the asset id of the transaction")
)
else: else:
asset_ids = Transaction.get_asset_ids(input_txs) asset_ids = Transaction.get_asset_ids(input_txs)
if Transaction.read_out_asset_id(tx) in asset_ids: if Transaction.read_out_asset_id(tx) in asset_ids:
@ -105,7 +103,9 @@ class Validator:
if output_amount != input_amount: if output_amount != input_amount:
raise AmountError( raise AmountError(
"The amount used in the inputs `{}` needs to be same as the amount used in the outputs `{}`".format(input_amount, output_amount) "The amount used in the inputs `{}` needs to be same as the amount used in the outputs `{}`".format(
input_amount, output_amount
)
) )
return True return True

View File

@ -131,16 +131,12 @@ DEFAULT_LOGGING_CONFIG = {
"formatters": { "formatters": {
"console": { "console": {
"class": "logging.Formatter", "class": "logging.Formatter",
"format": ( "format": ("[%(asctime)s] [%(levelname)s] (%(name)s) %(message)s (%(processName)-10s - pid: %(process)d)"),
"[%(asctime)s] [%(levelname)s] (%(name)s) %(message)s (%(processName)-10s - pid: %(process)d)"
),
"datefmt": "%Y-%m-%d %H:%M:%S", "datefmt": "%Y-%m-%d %H:%M:%S",
}, },
"file": { "file": {
"class": "logging.Formatter", "class": "logging.Formatter",
"format": ( "format": ("[%(asctime)s] [%(levelname)s] (%(name)s) %(message)s (%(processName)-10s - pid: %(process)d)"),
"[%(asctime)s] [%(levelname)s] (%(name)s) %(message)s (%(processName)-10s - pid: %(process)d)"
),
"datefmt": "%Y-%m-%d %H:%M:%S", "datefmt": "%Y-%m-%d %H:%M:%S",
}, },
}, },