File tree 3 files changed +1
-4
lines changed
graph/src/components/ethereum 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -347,13 +347,13 @@ impl PartialOrd for EthereumTrigger {
347
347
348
348
pub struct EthereumTransactionReceiptData {
349
349
// from receipts
350
+ // Geth nodes do not support `root` so it is not included
350
351
pub hash : H256 ,
351
352
pub index : Index ,
352
353
pub cumulative_gas_used : U256 ,
353
354
pub gas_used : Option < U256 > ,
354
355
pub contract_address : Option < H160 > ,
355
356
pub status : Option < U64 > ,
356
- pub root : Option < H256 > ,
357
357
358
358
// from txs
359
359
pub from : H160 ,
@@ -402,7 +402,6 @@ impl<'a> From<&'a EthereumBlock> for FullEthereumBlockDataWithReceipts {
402
402
gas_used : transaction_and_receipt. 1 . gas_used ,
403
403
contract_address : transaction_and_receipt. 1 . contract_address ,
404
404
status : transaction_and_receipt. 1 . status ,
405
- root : transaction_and_receipt. 1 . root ,
406
405
407
406
// from txs
408
407
from : transaction_and_receipt. 0 . from ,
Original file line number Diff line number Diff line change @@ -479,7 +479,6 @@ pub(crate) struct AscEthereumTransactionReceipt {
479
479
pub gas_used : AscPtr < AscBigInt > ,
480
480
pub contract_address : AscPtr < AscH160 > ,
481
481
pub status : AscPtr < AscBigInt > ,
482
- pub root : AscPtr < AscH256 > ,
483
482
484
483
pub from : AscPtr < AscH160 > ,
485
484
pub to : AscPtr < AscH160 > ,
Original file line number Diff line number Diff line change @@ -395,7 +395,6 @@ impl ToAscObj<AscEthereumTransactionReceipt> for EthereumTransactionReceiptData
395
395
. status
396
396
. map ( |status| heap. asc_new ( & BigInt :: from ( status) ) )
397
397
. into ( ) ,
398
- root : self . root . map ( |root| heap. asc_new ( & root) ) . into ( ) ,
399
398
400
399
// // from txs
401
400
from : heap. asc_new ( & self . from ) ,
You can’t perform that action at this time.
0 commit comments