|
|
@ -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": [] |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|