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
d5b9f6a6
Commit
d5b9f6a6
authored
Aug 22, 2018
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove console.log
parent
0f530cf7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
traceRetriever.js
remix-lib/src/trace/traceRetriever.js
+0
-2
web3VmProvider.js
remix-lib/src/web3Provider/web3VmProvider.js
+0
-3
No files found.
remix-lib/src/trace/traceRetriever.js
View file @
d5b9f6a6
...
@@ -5,8 +5,6 @@ function TraceRetriever (options) {
...
@@ -5,8 +5,6 @@ function TraceRetriever (options) {
}
}
TraceRetriever
.
prototype
.
getTrace
=
function
(
txHash
,
callback
)
{
TraceRetriever
.
prototype
.
getTrace
=
function
(
txHash
,
callback
)
{
console
.
dir
(
"getTrace: "
);
console
.
dir
(
arguments
);
var
options
=
{
var
options
=
{
disableStorage
:
true
,
disableStorage
:
true
,
disableMemory
:
false
,
disableMemory
:
false
,
...
...
remix-lib/src/web3Provider/web3VmProvider.js
View file @
d5b9f6a6
...
@@ -198,9 +198,6 @@ web3VmProvider.prototype.getCode = function (address, cb) {
...
@@ -198,9 +198,6 @@ web3VmProvider.prototype.getCode = function (address, cb) {
web3VmProvider
.
prototype
.
setProvider
=
function
(
provider
)
{}
web3VmProvider
.
prototype
.
setProvider
=
function
(
provider
)
{}
web3VmProvider
.
prototype
.
traceTransaction
=
function
(
txHash
,
options
,
cb
)
{
web3VmProvider
.
prototype
.
traceTransaction
=
function
(
txHash
,
options
,
cb
)
{
console
.
dir
(
"traceTransaction: "
);
console
.
dir
(
arguments
);
console
.
trace
(
"here"
);
if
(
this
.
vmTraces
[
txHash
])
{
if
(
this
.
vmTraces
[
txHash
])
{
if
(
cb
)
{
if
(
cb
)
{
cb
(
null
,
this
.
vmTraces
[
txHash
])
cb
(
null
,
this
.
vmTraces
[
txHash
])
...
...
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