This commit is contained in:
Jordi Baylina
2019-06-04 13:40:15 +02:00
parent efc77065e7
commit 590d62a07c
13 changed files with 12606 additions and 266 deletions

View File

@@ -127,12 +127,16 @@ class Contract {
jmp(label) {
this._pushLabel(label);
if (typeof label !== "undefined") {
this._pushLabel(label);
}
this.code.push(0x56);
}
jmpi(label) {
this._pushLabel(label);
if (typeof label !== "undefined") {
this._pushLabel(label);
}
this.code.push(0x57);
}