File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
main/scala/io/iohk/ethereum/jsonrpc
test/scala/io/iohk/ethereum/jsonrpc Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -355,12 +355,12 @@ class EthService(
355
355
else receipt.cumulativeGasUsed - receipts(txIndex - 1 ).cumulativeGasUsed
356
356
357
357
TransactionReceiptResponse (
358
- receipt,
359
- stx,
360
- sender,
361
- txIndex,
362
- header,
363
- gasUsed
358
+ receipt = receipt ,
359
+ stx = stx ,
360
+ signedTransactionSender = sender,
361
+ transactionIndex = txIndex,
362
+ blockHeader = header,
363
+ gasUsedByTransaction = gasUsed
364
364
)
365
365
}
366
366
Original file line number Diff line number Diff line change @@ -1071,12 +1071,12 @@ class EthServiceSpec
1071
1071
GetTransactionReceiptResponse (
1072
1072
Some (
1073
1073
TransactionReceiptResponse (
1074
- fakeReceipt.copy(cumulativeGasUsed = fakeReceipt.cumulativeGasUsed + gasUsedByTx),
1075
- contractCreatingTransaction,
1076
- contractCreatingTransactionSender,
1077
- 1 ,
1078
- Fixtures .Blocks .Block3125369 .header,
1079
- gasUsedByTx
1074
+ receipt = fakeReceipt.copy(cumulativeGasUsed = fakeReceipt.cumulativeGasUsed + gasUsedByTx),
1075
+ stx = contractCreatingTransaction,
1076
+ signedTransactionSender = contractCreatingTransactionSender,
1077
+ transactionIndex = 1 ,
1078
+ blockHeader = Fixtures .Blocks .Block3125369 .header,
1079
+ gasUsedByTransaction = gasUsedByTx
1080
1080
)
1081
1081
)
1082
1082
)
You can’t perform that action at this time.
0 commit comments