godprotocol 1.0.793 → 1.0.795
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/Objects/Opcodes.js +1 -1
- package/package.json +1 -1
package/Objects/Account.js
CHANGED
|
@@ -198,7 +198,7 @@ var Account = /*#__PURE__*/ (function (_Filesystem) {
|
|
|
198
198
|
var instructions = program.instructions,
|
|
199
199
|
account = program.account;
|
|
200
200
|
account = _this.get_account(account);
|
|
201
|
-
if (!account.validate(
|
|
201
|
+
if (!account.validate(program, signature, callback)) return;
|
|
202
202
|
var pid = account.manage_buffer(callback);
|
|
203
203
|
_this.manager.push({
|
|
204
204
|
sequence: instructions,
|
package/Objects/Opcodes.js
CHANGED
|
@@ -77,7 +77,7 @@ var Opcodes = /*#__PURE__*/ _createClass(function Opcodes() {
|
|
|
77
77
|
_classCallCheck(this, Opcodes);
|
|
78
78
|
_defineProperty(this, "set", function (opcode, circuit) {
|
|
79
79
|
_this.opcodes[opcode] = circuit;
|
|
80
|
-
_this.account.
|
|
80
|
+
_this.account.assembler.opcodes.push(opcode);
|
|
81
81
|
});
|
|
82
82
|
_defineProperty(this, "prepare_operation", function (opcode, context) {
|
|
83
83
|
var circ = _this.opcodes[opcode];
|