Skip to content
This repository was archived by the owner on Mar 16, 2023. It is now read-only.

Commit 7a90ca5

Browse files
author
Arnaud Schenk
committed
feat(protocol): change default gas limits
1 parent cf7b3ca commit 7a90ca5

1 file changed

Lines changed: 4 additions & 11 deletions

File tree

packages/protocol/truffle-config.js

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,6 @@ module.exports = {
115115
reporter: 'spec',
116116
},
117117
networks: {
118-
test: {
119-
provider: new Web3.providers.HttpProvider('http://localhost:8545'),
120-
gas: 6500000,
121-
gasPrice: toHex(toWei('1', 'gwei')),
122-
network_id: '*', // eslint-disable-line camelcase
123-
port: 8545,
124-
},
125118
development: {
126119
provider: engine,
127120
gas: 6500000,
@@ -131,24 +124,24 @@ module.exports = {
131124
},
132125
mainnet: {
133126
provider: mainnetProvider,
134-
gas: 10e6,
127+
gas: 9e6,
135128
gasPrice: toHex(toWei('10', 'gwei')),
136129
network_id: '1',
137130
skipDryRun: true,
138131
},
139132
rinkeby: {
140133
provider: rinkebyProvider,
141-
gas: 10e6,
134+
gas: 9e6,
142135
gasPrice: toHex(toWei('10', 'gwei')),
143136
network_id: '4',
144137
skipDryRun: true,
145138
},
146139
ropsten: {
147140
provider: ropstenProvider,
148-
gas: 8e6,
141+
gas: 7e6,
149142
gasPrice: toHex(toWei('10', 'gwei')),
150143
network_id: '3',
151144
skipDryRun: true,
152145
},
153146
},
154-
};
147+
};

0 commit comments

Comments
 (0)