Merge pull request #717 from status-im/unexpected-token

Prefer the use of `BigInt` over integer literal (`n` postfix) to facilitate the use of a polyfill
This commit is contained in:
Franck R 2022-05-02 15:10:12 +10:00 committed by GitHub
commit 5377bd6371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Prefer the use of `BigInt` over integer literal (`n` postfix) to facilitate the use of a polyfill.
### Fixed
- Declare `it-pipe` dependency, import as per `it-pipe@2.0.0` convention.

View File

@ -180,7 +180,7 @@ describe("ENR", function () {
let record: ENR;
beforeEach(() => {
const seq = 1n;
const seq = BigInt(1);
privateKey = hexToBytes(
"b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291"
);

View File

@ -32,7 +32,7 @@ export class ENR extends Map<ENRKey, ENRValue> {
constructor(
kvs: Record<ENRKey, ENRValue> = {},
seq: SequenceNumber = 1n,
seq: SequenceNumber = BigInt(1),
signature: Uint8Array | null = null
) {
super(Object.entries(kvs));