Fix bug : typo

This commit is contained in:
RanchiMall Dev 2023-07-03 22:43:00 +00:00
parent 5af8a2e1d1
commit 0f6f5fe955

View File

@ -1569,7 +1569,7 @@ async def tokenTransactions(token):
if limit is not None and not check_integer(limit):
return jsonify(description='limit validation failed'), 400
filelocation = os.path.join(dbfolder, 'tokens', f'tokens.db')
filelocation = os.path.join(dbfolder, 'tokens', f'{token}.db')
if os.path.isfile(filelocation):
transactionJsonData = fetch_token_transactions(token, senderFloAddress, destFloAddress, limit)