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
ef152de6
Unverified
Commit
ef152de6
authored
Aug 19, 2021
by
David Disu
Committed by
GitHub
Aug 19, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into react-guide
parents
3f9d1afd
6f42efc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
blockchain.js
apps/remix-ide/src/blockchain/blockchain.js
+2
-2
No files found.
apps/remix-ide/src/blockchain/blockchain.js
View file @
ef152de6
...
...
@@ -501,7 +501,7 @@ class Blockchain extends Plugin {
if
(
isVM
)
{
const
hhlogs
=
await
this
.
web3
().
eth
.
getHHLogsForTx
(
txResult
.
transactionHash
)
if
(
hhlogs
&&
hhlogs
.
length
)
{
let
finalLogs
=
'
console.log:
\
n'
let
finalLogs
=
'
<b>console.log:</b>
\
n'
for
(
const
log
of
hhlogs
)
{
let
formattedLog
// Hardhat implements the same formatting options that can be found in Node.js' console.log,
...
...
@@ -513,7 +513,7 @@ class Blockchain extends Plugin {
}
else
{
formattedLog
=
log
.
join
(
' '
)
}
finalLogs
=
finalLogs
+
formattedLog
+
'
\
n'
finalLogs
=
finalLogs
+
' '
+
formattedLog
+
'
\
n'
}
this
.
call
(
'terminal'
,
'log'
,
{
type
:
'info'
,
value
:
finalLogs
})
}
...
...
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