KiTa Posted July 11, 2016 Report Posted July 11, 2016 When my bot attempts to accept a trade confirmation I get this weird error confirmations.js:327 var existing = this._confirmationKeys[tag]; ^ TypeError: Cannot read property 'conf' of undefined This is what I believe triggers it community.on('confKeyNeeded', function (tag, callback) { var time = Math.floor(Date.now() / 1000); callback(null, time, SteamTotp.getConfirmationKey(config.identity_secret, time, tag)); }); Quote
Dr. McKay Posted July 11, 2016 Report Posted July 11, 2016 I believe this is caused by your calling checkConfirmations without having started the confirmation checker first. This isn't supported behavior. Do you want it to be? Quote
KiTa Posted July 12, 2016 Author Report Posted July 12, 2016 It's not a necessity but if it could be it'd allow for faster trade confirmations on restart Quote
Dr. McKay Posted July 12, 2016 Report Posted July 12, 2016 All you have to do is call startConfirmationChecker first. You can do it synchronously. Quote
Oriditi Posted May 27, 2017 Report Posted May 27, 2017 Mine is calling startConfirmationChecker first and its still not working... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.