From 4e7313317f9796fb5863941eb6fbab4fd116c2ac Mon Sep 17 00:00:00 2001 From: yann300 Date: Sat, 24 Aug 2019 14:13:00 +0200 Subject: [PATCH] Use name 'web3' when custom provider --- remix-lib/src/execution/execution-context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-lib/src/execution/execution-context.js b/remix-lib/src/execution/execution-context.js index b9b130c72..3985978c3 100644 --- a/remix-lib/src/execution/execution-context.js +++ b/remix-lib/src/execution/execution-context.js @@ -216,7 +216,7 @@ function ExecutionContext () { if (this.customNetWorks[context]) { var provider = this.customNetWorks[context] - setProviderFromEndpoint(provider.url, provider.name, () => { cb() }) + setProviderFromEndpoint(provider.url, 'web3', () => { cb() }) } }