You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if highest_block_receipts == highest_block_transactions {
167
167
warn!(target:"reth::cli", highest_block_receipts, highest_block_transactions,"Ignoring all other blocks in the file since we have reached the desired height");
Copy file name to clipboardExpand all lines: crates/optimism/cli/src/lib.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,14 @@ pub mod chainspec;
16
16
pubmod commands;
17
17
/// Module with a codec for reading and encoding receipts in files.
18
18
///
19
-
/// Enables decoding and encoding `HackReceipt` type. See <https://github.com/testinprod-io/op-geth/pull/1>.
19
+
/// Enables decoding and encoding `OpGethReceipt` type. See <https://github.com/testinprod-io/op-geth/pull/1>.
20
20
///
21
-
/// Currently configured to use codec [`HackReceipt`](receipt_file_codec::HackReceipt) based on
21
+
/// Currently configured to use codec [`OpGethReceipt`](receipt_file_codec::OpGethReceipt) based on
22
22
/// export of below Bedrock data using <https://github.com/testinprod-io/op-geth/pull/1>. Codec can
23
23
/// be replaced with regular encoding of receipts for export.
24
24
///
25
25
/// NOTE: receipts can be exported using regular op-geth encoding for `Receipt` type, to fit
26
-
/// reth's needs for importing. However, this would require patching the diff in <https://github.com/testinprod-io/op-geth/pull/1> to export the `Receipt` and not `HackReceipt` type (originally
26
+
/// reth's needs for importing. However, this would require patching the diff in <https://github.com/testinprod-io/op-geth/pull/1> to export the `Receipt` and not `OpGethReceipt` type (originally
0 commit comments