diff --git a/scripts/list-contributors.js b/scripts/list-contributors.js index 5cf77aa..c6944b8 100644 --- a/scripts/list-contributors.js +++ b/scripts/list-contributors.js @@ -16,7 +16,7 @@ module.exports = async function(callback) { const table = new Table({ - head: ['ID', 'Account', 'Core?', 'Name'] + head: ['ID', 'Account', 'Core?', 'Name', 'Balance'] }) let contributors = await kredits.Contributor.all() @@ -26,7 +26,8 @@ module.exports = async function(callback) { c.id.toString(), c.account, c.isCore, - `${c.name}` + `${c.name}`, + c.balance.toString() ]) }) console.log(table.toString())