We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fb0344 commit eb93b6fCopy full SHA for eb93b6f
vm/src/vm/runners/builtin_runner/modulo.rs
@@ -263,6 +263,8 @@ impl ModBuiltinRunner {
263
});
264
}
265
266
+ instances.sort_by_key(|input| input.index);
267
+
268
vec![PrivateInput::Mod(ModInput {
269
instances,
270
zero_value_address: relocation_table
vm/src/vm/runners/builtin_runner/signature.rs
@@ -238,6 +238,10 @@ impl SignatureBuiltinRunner {
238
}))
239
240
241
+ private_inputs.sort_by_key(|input| match input {
242
+ PrivateInput::Signature(sig) => sig.index,
243
+ _ => unreachable!(),
244
+ });
245
private_inputs
246
247
0 commit comments