Update the Changelog with pr number

This commit is contained in:
Jacob Evans
2018-04-13 13:39:32 +10:00
parent 73e23996a6
commit 7b318b3cc2
3 changed files with 19 additions and 1 deletions

View File

@@ -1,4 +1,13 @@
[ [
{
"version": "0.36.1",
"changes": [
{
"note": "Remove truffle-hdwallet from artifact tests",
"pr": 524
}
],
},
{ {
"version": "0.36.0", "version": "0.36.0",
"changes": [ "changes": [

View File

@@ -1,4 +1,13 @@
[ [
{
"version": "0.3.6",
"changes": [
{
"note": "Allow an rpcURL to be set in Web3Config (for testnet RPC endpoints)",
"pr": 524
}
]
},
{ {
"timestamp": 1523462196, "timestamp": 1523462196,
"version": "0.3.5", "version": "0.3.5",

View File

@@ -54,7 +54,7 @@ export const web3Factory = {
}; };
const shouldUseInProcessGanache = !!config.shouldUseInProcessGanache; const shouldUseInProcessGanache = !!config.shouldUseInProcessGanache;
if (shouldUseInProcessGanache) { if (shouldUseInProcessGanache) {
if (_.isUndefined(config.rpcUrl)) { if (!_.isUndefined(config.rpcUrl)) {
throw new Error('Cannot use both GanacheSubrovider and RPCSubprovider'); throw new Error('Cannot use both GanacheSubrovider and RPCSubprovider');
} }
provider.addProvider( provider.addProvider(