Skip to content

Commit

Permalink
hexEncoding.test.ts: add GENESIS_BASE_FEE_PER_GAS unit test (#3309)
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths authored Oct 5, 2021
1 parent c3a1e18 commit adaf90f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/lodestar/test/unit/eth1/hexEncoding.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ describe("eth1 / hex encoding", () => {
num: 0xff00,
bigint: BigInt(0xff00),
},
// GENESIS_BASE_FEE_PER_GAS
{
quantity: "0x3b9aca00",
bytes: "00ca9a3b00000000000000000000000000000000000000000000000000000000",
num: 1000000000,
bigint: BigInt(1000000000),
},
{
quantity: "0xaabb",
bytes: "bbaa000000000000000000000000000000000000000000000000000000000000",
Expand Down

0 comments on commit adaf90f

Please sign in to comment.