-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update startBlockHeight config variable for E2E tests and fix failing…
… tests
- Loading branch information
Showing
6 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
const { Web3 } = require('web3') | ||
|
||
const web3 = new Web3("http://127.0.0.1:8545") | ||
const web3 = new Web3('http://127.0.0.1:8545') | ||
|
||
module.exports = { | ||
web3: web3, | ||
eoa: web3.eth.accounts.privateKeyToAccount("0xf6d5333177711e562cabf1f311916196ee6ffc2a07966d9d4628094073bd5442"), // eoa is 0xfacf71692421039876a5bb4f10ef7a439d8ef61e | ||
eoa: web3.eth.accounts.privateKeyToAccount('0xf6d5333177711e562cabf1f311916196ee6ffc2a07966d9d4628094073bd5442'), // eoa is 0xfacf71692421039876a5bb4f10ef7a439d8ef61e | ||
fundedAmount: 5.0, | ||
startBlockHeight: 2n, // start block height after setup accounts | ||
coinbase: "0x658bdf435d810c91414ec09147daa6db62406379", // configured account to receive fees | ||
startBlockHeight: 3n, // start block height after setup accounts | ||
coinbase: '0x658bdf435d810c91414ec09147daa6db62406379', // configured account to receive fees | ||
successStatus: 1n, | ||
minGasPrice: 150n | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters