diff --git a/bot/index.js b/bot/index.js index 3c854bc..cc59a61 100644 --- a/bot/index.js +++ b/bot/index.js @@ -152,6 +152,7 @@ const sendTransaction = function (to, amount, gasPrice) { return new Promise((resolve, reject) => { wallet.sendTransaction(signedTransaction) .then(function(hash) { + logTransaction(hash, config.sourceAddress, to, amount, gasPrice); resolve(hash); }).catch(function(err) { reject(err);