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
Update gasPrice to geth default minimum
  • Loading branch information
spacesailor24 committed Jul 10, 2021
commit 6bd70cdfdd729563379a611dadf910e686c79e07
6 changes: 3 additions & 3 deletions test/e2e.contract.deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ describe('contract.deploy [ @E2E ]', function() {

var basicOptions = {
data: Basic.bytecode,
gasPrice: '1',
gasPrice: '0x3B9ACA00',
gas: 4000000
};

var revertsOptions = {
data: Reverts.bytecode,
gasPrice: '1',
gasPrice: '0x3B9ACA00',
gas: 4000000
}

var noBytecodeOptions = {
data: '0x',
gasPrice: '1',
gasPrice: '0x3B9ACA00',
gas: 4000000
}

Expand Down