Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
554e6e82
Unverified
Commit
554e6e82
authored
Jun 10, 2021
by
yann300
Committed by
GitHub
Jun 10, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1273 from ethereum/yann300-patch-31
Remove kovan debug node
parents
2186eda9
3ec46c18
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
init.ts
libs/remix-debug/src/init.ts
+1
-2
init.ts
libs/remix-lib/src/init.ts
+1
-2
debugger-ui.tsx
libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx
+1
-1
No files found.
libs/remix-debug/src/init.ts
View file @
554e6e82
...
@@ -22,8 +22,7 @@ export function web3DebugNode (network) {
...
@@ -22,8 +22,7 @@ export function web3DebugNode (network) {
Main
:
'https://rpc.archivenode.io/e50zmkroshle2e2e50zm0044i7ao04ym'
,
Main
:
'https://rpc.archivenode.io/e50zmkroshle2e2e50zm0044i7ao04ym'
,
Rinkeby
:
'https://remix-rinkeby.ethdevops.io'
,
Rinkeby
:
'https://remix-rinkeby.ethdevops.io'
,
Ropsten
:
'https://remix-ropsten.ethdevops.io'
,
Ropsten
:
'https://remix-ropsten.ethdevops.io'
,
Goerli
:
'https://remix-goerli.ethdevops.io'
,
Goerli
:
'https://remix-goerli.ethdevops.io'
Kovan
:
'https://remix-kovan.ethdevops.io'
}
}
if
(
web3DebugNodes
[
network
])
{
if
(
web3DebugNodes
[
network
])
{
return
loadWeb3
(
web3DebugNodes
[
network
])
return
loadWeb3
(
web3DebugNodes
[
network
])
...
...
libs/remix-lib/src/init.ts
View file @
554e6e82
...
@@ -21,8 +21,7 @@ export function web3DebugNode (network) {
...
@@ -21,8 +21,7 @@ export function web3DebugNode (network) {
Main
:
'https://gethmainnet.komputing.org'
,
Main
:
'https://gethmainnet.komputing.org'
,
Rinkeby
:
'https://remix-rinkeby.ethdevops.io'
,
Rinkeby
:
'https://remix-rinkeby.ethdevops.io'
,
Ropsten
:
'https://remix-ropsten.ethdevops.io'
,
Ropsten
:
'https://remix-ropsten.ethdevops.io'
,
Goerli
:
'https://remix-goerli.ethdevops.io'
,
Goerli
:
'https://remix-goerli.ethdevops.io'
Kovan
:
'https://remix-kovan.ethdevops.io'
}
}
if
(
web3DebugNodes
[
network
])
{
if
(
web3DebugNodes
[
network
])
{
return
this
.
loadWeb3
(
web3DebugNodes
[
network
])
return
this
.
loadWeb3
(
web3DebugNodes
[
network
])
...
...
libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx
View file @
554e6e82
...
@@ -282,7 +282,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
...
@@ -282,7 +282,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
}
}
type=
"checkbox"
title=
"Debug with generated sources"
/>
}
}
type=
"checkbox"
title=
"Debug with generated sources"
/>
<
label
data
-
id=
"debugGeneratedSourcesLabel"
className=
"form-check-label custom-control-label"
htmlFor=
"debugGeneratedSourcesInput"
>
Use generated sources (from Solidity v0.7.2)
</
label
>
<
label
data
-
id=
"debugGeneratedSourcesLabel"
className=
"form-check-label custom-control-label"
htmlFor=
"debugGeneratedSourcesInput"
>
Use generated sources (from Solidity v0.7.2)
</
label
>
</
div
>
</
div
>
{
(
state
.
validationError
&&
!
state
.
txNumberIsEmpty
)
&&
<
span
className=
"w-100 py-1 text-danger validationError"
>
{
state
.
validationError
}
</
span
>
}
{
state
.
validationError
&&
<
span
className=
"w-100 py-1 text-danger validationError"
>
{
state
.
validationError
}
</
span
>
}
</
div
>
</
div
>
<
TxBrowser
requestDebug=
{
requestDebug
}
unloadRequested=
{
unloadRequested
}
updateTxNumberFlag=
{
updateTxNumberFlag
}
transactionNumber=
{
state
.
txNumber
}
debugging=
{
state
.
debugging
}
/>
<
TxBrowser
requestDebug=
{
requestDebug
}
unloadRequested=
{
unloadRequested
}
updateTxNumberFlag=
{
updateTxNumberFlag
}
transactionNumber=
{
state
.
txNumber
}
debugging=
{
state
.
debugging
}
/>
{
state
.
debugging
&&
<
StepManager
stepManager=
{
stepManager
}
/>
}
{
state
.
debugging
&&
<
StepManager
stepManager=
{
stepManager
}
/>
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment