File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
remix-ui/debugger-ui/src/lib Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff 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 ] )
Original file line number Diff line number Diff 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 ] )
Original file line number Diff line number Diff 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 } /> }
You can’t perform that action at this time.
0 commit comments