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 6c544d0 commit b137020Copy full SHA for b137020
aggregation_mode/src/aggregators/risc0_aggregator.rs
@@ -9,7 +9,7 @@ const RISC0_AGGREGATOR_PROGRAM_ID_BYTES: [u8; 32] = {
9
let mut res = [0u8; 32];
10
let mut i = 0;
11
while i < 8 {
12
- let bytes = RISC0_AGGREGATOR_PROGRAM_ID[i].to_be_bytes();
+ let bytes = RISC0_AGGREGATOR_PROGRAM_ID[i].to_le_bytes();
13
res[i * 4] = bytes[0];
14
res[i * 4 + 1] = bytes[1];
15
res[i * 4 + 2] = bytes[2];
0 commit comments