@xelis/sdk 0.8.3 → 0.8.4
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.
|
@@ -221,7 +221,7 @@ var DaemonMethods = /** @class */ (function () {
|
|
|
221
221
|
return this.dataCall(types_js_1.RPCMethod.GetSizeOnDisk);
|
|
222
222
|
};
|
|
223
223
|
DaemonMethods.prototype.getAccountRegistrationTopoheight = function (address) {
|
|
224
|
-
return this.dataCall(types_js_1.RPCMethod.GetAccountRegistrationTopoheight, address);
|
|
224
|
+
return this.dataCall(types_js_1.RPCMethod.GetAccountRegistrationTopoheight, { address: address });
|
|
225
225
|
};
|
|
226
226
|
return DaemonMethods;
|
|
227
227
|
}());
|
|
@@ -218,7 +218,7 @@ var DaemonMethods = /** @class */ (function () {
|
|
|
218
218
|
return this.dataCall(RPCMethod.GetSizeOnDisk);
|
|
219
219
|
};
|
|
220
220
|
DaemonMethods.prototype.getAccountRegistrationTopoheight = function (address) {
|
|
221
|
-
return this.dataCall(RPCMethod.GetAccountRegistrationTopoheight, address);
|
|
221
|
+
return this.dataCall(RPCMethod.GetAccountRegistrationTopoheight, { address: address });
|
|
222
222
|
};
|
|
223
223
|
return DaemonMethods;
|
|
224
224
|
}());
|
package/package.json
CHANGED