Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Pana committed May 24, 2024
1 parent 6bf19fc commit dc4c8d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/1559.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { Conflux, Drip } = require('../src');

const { Conflux } = require('../src');
const { TEST_KEY } = require('./index');
const NET8888_URL = "https://net8888cfx.confluxrpc.com";

const NET8888_URL = 'https://net8888cfx.confluxrpc.com';
const NET8888_ID = 8888;
const STORAGE_KEY1 = '0x0000000000000000000000000000000000000000000000000000000000000001';

Expand Down Expand Up @@ -54,4 +54,4 @@ test('1559 estimate', async () => {
}],
});
expect(estimate).toHaveProperty('gasUsed');
});
});
2 changes: 1 addition & 1 deletion test/transaction.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { Transaction, format, sign } = require('../src');

const KEY = require('./index').TEST_KEY;

const ADDRESS = 'cfxtest:aasm4c231py7j34fghntcfkdt2nm9xv1tu6jd3r1s7';
const networkId = 1;

Expand Down

0 comments on commit dc4c8d0

Please sign in to comment.