Skip to content

Commit 554e6e8

Browse files
authored
Merge pull request #1273 from ethereum/yann300-patch-31
Remove kovan debug node
2 parents 2186eda + 3ec46c1 commit 554e6e8

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

libs/remix-debug/src/init.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ export function web3DebugNode (network) {
2222
Main: 'https://rpc.archivenode.io/e50zmkroshle2e2e50zm0044i7ao04ym',
2323
Rinkeby: 'https://remix-rinkeby.ethdevops.io',
2424
Ropsten: 'https://remix-ropsten.ethdevops.io',
25-
Goerli: 'https://remix-goerli.ethdevops.io',
26-
Kovan: 'https://remix-kovan.ethdevops.io'
25+
Goerli: 'https://remix-goerli.ethdevops.io'
2726
}
2827
if (web3DebugNodes[network]) {
2928
return loadWeb3(web3DebugNodes[network])

libs/remix-lib/src/init.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export function web3DebugNode (network) {
2121
Main: 'https://gethmainnet.komputing.org',
2222
Rinkeby: 'https://remix-rinkeby.ethdevops.io',
2323
Ropsten: 'https://remix-ropsten.ethdevops.io',
24-
Goerli: 'https://remix-goerli.ethdevops.io',
25-
Kovan: 'https://remix-kovan.ethdevops.io'
24+
Goerli: 'https://remix-goerli.ethdevops.io'
2625
}
2726
if (web3DebugNodes[network]) {
2827
return this.loadWeb3(web3DebugNodes[network])

libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
282282
}} type="checkbox" title="Debug with generated sources" />
283283
<label data-id="debugGeneratedSourcesLabel" className="form-check-label custom-control-label" htmlFor="debugGeneratedSourcesInput">Use generated sources (from Solidity v0.7.2)</label>
284284
</div>
285-
{ (state.validationError && !state.txNumberIsEmpty) && <span className="w-100 py-1 text-danger validationError">{state.validationError}</span> }
285+
{ state.validationError && <span className="w-100 py-1 text-danger validationError">{state.validationError}</span> }
286286
</div>
287287
<TxBrowser requestDebug={ requestDebug } unloadRequested={ unloadRequested } updateTxNumberFlag={ updateTxNumberFlag } transactionNumber={ state.txNumber } debugging={ state.debugging } />
288288
{ state.debugging && <StepManager stepManager={ stepManager } /> }

0 commit comments

Comments
 (0)