Formatting
This commit is contained in:
parent
d4c7057fff
commit
a186cb4045
|
@ -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
|
||||
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Reference in New Issue