From a3404b55b170a0d6f7c061a6afd472bec0212628 Mon Sep 17 00:00:00 2001 From: "Ralph S. (Coolguy3289)" Date: Fri, 14 Aug 2020 11:14:07 -0400 Subject: [PATCH] Fix logging of fund command --- src/commands/admin/fund.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/admin/fund.js b/src/commands/admin/fund.js index 6fc6bf9..d21e665 100644 --- a/src/commands/admin/fund.js +++ b/src/commands/admin/fund.js @@ -23,7 +23,7 @@ module.exports = class FundAccount extends Command { })) return; const response = await this.client.lbry.fundAccount({to: account.accountID, amount: givenAmount}); const transaction = await response.json(); - console.info('Funded account', account.result.id, transaction.result.txid); + console.info('Funded account', account.accountID, transaction.result.txid); const txid = transaction.result.txid; return message.channel.createMessage(`Successfully funded account! https://explorer.lbry.com/tx/${txid}`); }