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