Received wallet info update: {
has_wallet: true,
balance: -2132471336,
currency: 15,
balance_delayed: 0,
balance64: '2162495960',
balance64_delayed: '0',
realm: 1
}
this is a wallet event balance64 is Correct
// source code
this.emit('wallet', body.has_wallet, body.currency, body.balance / 100);
this.wallet = {
hasWallet: body.has_wallet,
currency: body.currency,
balance: body.balance / 100
};
body.balance use body.balance64 is ok
doctor can update this?