Formatting

This commit is contained in:
Mark Spanbroek 2024-01-25 13:13:32 +01:00 committed by markspanbroek
parent d4c7057fff
commit a186cb4045
2 changed files with 6 additions and 4 deletions

View File

@ -2,8 +2,10 @@ const { expect } = require("chai")
const { ethers } = require("hardhat")
describe("Endian", function () {
const big = "0x000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
const little = "0x1f1e1d1c1b1a191817161514131211100f0e0d0c0b0a09080706050403020100"
const big =
"0x000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
const little =
"0x1f1e1d1c1b1a191817161514131211100f0e0d0c0b0a09080706050403020100"
let endian

View File

@ -41,8 +41,8 @@ const exampleRequest = async () => {
const exampleProof = () => ({
a: { x: 1, y: 2 },
b: { x: [3, 4], y: [5, 6]},
c: { x: 7, y: 8 }
b: { x: [3, 4], y: [5, 6] },
c: { x: 7, y: 8 },
})
module.exports = { exampleConfiguration, exampleRequest, exampleProof }