Merge pull request #1383 from ethereum/fixTerminalCall

Fix terminal call
pull/1/head
yann300 7 years ago committed by GitHub
commit fd691845b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/app/compiler/compiler-imports.js
  2. 2
      src/app/execution/txLogger.js

@ -12,10 +12,7 @@ module.exports = class CompilerImports {
return request.get(
{
url: 'https://api.github.com/repos/' + root + '/contents/' + path,
json: true,
headers: {
'User-Agent': 'Remix'
}
json: true
},
(err, r, data) => {
if (err) {

@ -371,7 +371,7 @@ function txDetails (e, tx, data, obj) {
log.appendChild(arrowUp)
table = createTable({
hash: data.tx.hash,
status: data.receipt.status,
status: data.receipt ? data.receipt.status : null,
isCall: data.tx.isCall,
contractAddress: data.tx.contractAddress,
data: data.tx,

Loading…
Cancel
Save