mirror of
https://github.com/arnaucube/circomlib.git
synced 2026-02-08 11:46:39 +01:00
Poseidon
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user