Fix ganache subprovider config
This commit is contained in:
@@ -14,6 +14,7 @@ async callAsync(
|
||||
const encodedData = ethersFunction.data;
|
||||
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
||||
{
|
||||
to: self.address,
|
||||
data: encodedData,
|
||||
},
|
||||
self._web3Wrapper.getContractDefaults(),
|
||||
|
@@ -16,6 +16,7 @@ public {{this.tsName}} = {
|
||||
).data;
|
||||
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
||||
{
|
||||
to: self.address,
|
||||
...txData,
|
||||
data: encodedData,
|
||||
},
|
||||
@@ -40,6 +41,7 @@ public {{this.tsName}} = {
|
||||
).data;
|
||||
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
||||
{
|
||||
to: self.address,
|
||||
...txData,
|
||||
data: encodedData,
|
||||
},
|
||||
|
@@ -60,9 +60,9 @@ export const web3Factory = {
|
||||
provider.addProvider(
|
||||
new GanacheSubprovider({
|
||||
logger,
|
||||
verbose: env.parseBoolean(EnvVars.SolidityCoverage),
|
||||
verbose: env.parseBoolean(EnvVars.VerboseGanache),
|
||||
port: 8545,
|
||||
networkId: 50,
|
||||
network_id: 50,
|
||||
mnemonic: 'concert load couple harbor equip island argue ramp clarify fence smart topic',
|
||||
}),
|
||||
);
|
||||
|
Reference in New Issue
Block a user