(cointop): Fix typo in alias check.

This commit is contained in:
2021-09-14 05:38:05 +03:00
parent 73d210db31
commit 2bd97b1ba0

View File

@@ -36,7 +36,7 @@ async def cmd_topcoin(ctx):
return await ctx.error_reply(
"**Usage:**`{prefix}topcoin` or `{prefix}topcoin100`.".format(prefix=ctx.best_prefix)
)
top100 = (ctx.args == "100" or ctx.alias == "contop100")
top100 = (ctx.args == "100" or ctx.alias == "cointop100")
# Flush any pending coin transactions
Lion.sync()