zano_web3 3.4.0 → 3.6.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,12 +1,11 @@
1
1
  {
2
2
  "name": "zano_web3",
3
- "version": "3.4.0",
3
+ "version": "3.6.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
- "type": "module",
8
7
  "scripts": {
9
- "build": "tsc --build --force"
8
+ "build": "tsc"
10
9
  },
11
10
  "repository": {
12
11
  "type": "git",
package/src/zanoWallet.ts CHANGED
@@ -117,10 +117,6 @@ class ZanoWallet {
117
117
  const existingWallet = this.params.useLocalStorage ? this.getSavedWalletCredentials() : undefined;
118
118
 
119
119
  const existingWalletValid = existingWallet && existingWallet.address === walletData.address;
120
-
121
- console.log('existingWalletValid', existingWalletValid);
122
- console.log('existingWallet', existingWallet);
123
- console.log('walletData', walletData);
124
120
 
125
121
  if (existingWalletValid) {
126
122
  nonce = existingWallet.nonce;