fix:(minor) spacing in output

This commit is contained in:
Mohamed Sohail 2022-02-08 13:26:34 +03:00
parent 28e3bd77ed
commit 132dc45306
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def apply(c, s, chain_spec, conn, block, tx, db_session=None):
def account_registry_add(c, s, chain_spec, conn, block, tx):
try:
o = AccountsIndex.parse_add_request(tx.payload)
s = '{} block{} tx {} account registration for {}'.format(c, block.number, tx.index, o[0])
s = '{} block {} tx {} account registration for {}'.format(c, block.number, tx.index, o[0])
return s
except RequestMismatchException as e:
pass