add transactions to get block methods

pull/7/head
Iuri Matias 6 years ago
parent 3763ae7aff
commit 0ebd7aa23b
  1. 8
      remix-simulator/src/methods/blocks.js

@ -38,9 +38,7 @@ Blocks.prototype.eth_getBlockByNumber = function (payload, cb) {
'gasLimit': toHex(block.header.gasLimit), 'gasLimit': toHex(block.header.gasLimit),
'gasUsed': toHex(block.header.gasUsed), 'gasUsed': toHex(block.header.gasUsed),
"timestamp": toHex(block.header.timestamp), "timestamp": toHex(block.header.timestamp),
// TODO: add transactions "transactions": block.transactions.map((t) => "0x" + t.hash().toString('hex')),
// block.transactions
"transactions": [],
"uncles": [] "uncles": []
} }
@ -79,9 +77,7 @@ Blocks.prototype.eth_getBlockByHash = function (payload, cb) {
'gasLimit': toHex(block.header.gasLimit), 'gasLimit': toHex(block.header.gasLimit),
'gasUsed': toHex(block.header.gasUsed), 'gasUsed': toHex(block.header.gasUsed),
"timestamp": toHex(block.header.timestamp), "timestamp": toHex(block.header.timestamp),
// TODO: add transactions "transactions": block.transactions.map((t) => "0x" + t.hash().toString('hex')),
// block.transactions
"transactions": [],
"uncles": [] "uncles": []
} }

Loading…
Cancel
Save