Hi @moonrise , Thankyou so much for all your sharing! I've followed your previous tutorials closely and I've had everything working until now. I'm finding a problem when I add the last bit of code that is for the refund. I get the following error message when I run it.. Please can you double-check the code for the refund part is correct.
You are viewing a single comment's thread from:
I've isolate the error to being in the following part, if I delete this section the bot functions without any errors:
function refund(sender, amount) {
steem.broadcast.transfer(config.private_active_key, config.account_name, sender, amount, '', function (err, response) {
if (err || !result) {
console.log("Refund failed ! For: " + sender);
}
}
});
}