godprotocol 1.0.73 → 1.0.74
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/Objects/Account.js +1 -1
- package/package.json +1 -1
package/Objects/Account.js
CHANGED
|
@@ -162,7 +162,7 @@ class Account extends Filesystem {
|
|
|
162
162
|
let account = this.accounts[name] || this.manager.accounts[name];
|
|
163
163
|
|
|
164
164
|
if (!account) {
|
|
165
|
-
account = new Account(name, this);
|
|
165
|
+
account = new Account(name, this.manager);
|
|
166
166
|
this.accounts[account.name] = account;
|
|
167
167
|
this.manager.accounts[account.name] = account;
|
|
168
168
|
}
|