Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gasPrice type and backfills timeout change
  • Loading branch information
jdevcs committed Jul 16, 2021
commit 2015ad41ac4d88ba3b9b4c663f136b0a1716a71d
6 changes: 3 additions & 3 deletions test/e2e.contract.events.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('contract.events [ @E2E ]', function() {

var basicOptions = {
data: Basic.bytecode,
gasPrice: '1',
gasPrice: 1000000000,// Default gasPrice set by Geth
gas: 4000000
};

Expand Down Expand Up @@ -289,7 +289,7 @@ describe('contract.events [ @E2E ]', function() {
let contract;

const options = {
gasPrice: '1',
gasPrice: 1000000000,// Default gasPrice set by Geth
gas: 4000000
};

Expand Down Expand Up @@ -336,7 +336,7 @@ describe('contract.events [ @E2E ]', function() {
// and geth instamine's websockets connection is too fragile for the tests in this file.
it('backfills missed events when auto-reconnecting', function(){
if(!process.env.GANACHE) return;
this.timeout(10000);
this.timeout(20000);

let counter = 0;
const acc = accounts[0];
Expand Down