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
e62e7947
Commit
e62e7947
authored
Sep 25, 2019
by
Iuri Matias
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add message about http json-rpc deprecation
parent
72d3af4f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
execution-context.js
remix-lib/src/execution/execution-context.js
+1
-1
server.js
remix-simulator/src/server.js
+6
-1
No files found.
remix-lib/src/execution/execution-context.js
View file @
e62e7947
...
@@ -115,7 +115,7 @@ function ExecutionContext () {
...
@@ -115,7 +115,7 @@ function ExecutionContext () {
this
.
blockGasLimit
=
this
.
blockGasLimitDefault
this
.
blockGasLimit
=
this
.
blockGasLimitDefault
this
.
customNetWorks
=
{}
this
.
customNetWorks
=
{}
this
.
blocks
=
{}
this
.
blocks
=
{}
this
.
latestBlockNumber
=
0
;
this
.
latestBlockNumber
=
0
this
.
txs
=
{}
this
.
txs
=
{}
this
.
init
=
function
(
config
)
{
this
.
init
=
function
(
config
)
{
...
...
remix-simulator/src/server.js
View file @
e62e7947
...
@@ -54,7 +54,12 @@ class Server {
...
@@ -54,7 +54,12 @@ class Server {
})
})
}
}
app
.
listen
(
port
,
host
,
()
=>
log
(
'Remix Simulator listening on port '
+
host
+
':'
+
port
))
app
.
listen
(
port
,
host
,
()
=>
{
log
(
'Remix Simulator listening on ws://'
+
host
+
':'
+
port
)
if
(
!
this
.
rpcOnly
)
{
log
(
'http json-rpc is deprecated and disabled by default. To enable it use --rpc'
)
}
})
}
}
}
}
...
...
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