zano_web3 3.2.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zano_web3",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/zanoWallet.ts CHANGED
@@ -118,6 +118,10 @@ class ZanoWallet {
118
118
 
119
119
  const existingWalletValid = existingWallet && existingWallet.address === walletData.address;
120
120
 
121
+ console.log('existingWalletValid', existingWalletValid);
122
+ console.log('existingWallet', existingWallet);
123
+ console.log('walletData', walletData);
124
+
121
125
  if (existingWalletValid) {
122
126
  nonce = existingWallet.nonce;
123
127
  signature = existingWallet.signature;