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}`); }