diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 539396277c2a..45cc5d7badac 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -19,7 +19,8 @@ concurrency: jobs: test: name: test / ${{ matrix.type }} (${{ matrix.partition }}/${{ matrix.total_partitions }}) - runs-on: ubuntu-latest + runs-on: + group: scroll-reth-runner-group env: RUST_BACKTRACE: 1 strategy: diff --git a/crates/scroll/alloy/consensus/README.md b/crates/scroll/alloy/consensus/README.md index 1f5971580ad3..b311fb2629b4 100644 --- a/crates/scroll/alloy/consensus/README.md +++ b/crates/scroll/alloy/consensus/README.md @@ -3,7 +3,7 @@ Scroll consensus interface. This crate contains constants, types, and functions for implementing Scroll EL consensus and communication. This -includes an extended `ScrollTxEnvelope` type with deposit transactions +includes an extended `ScrollTxEnvelope` type with l1 messages. In general a type belongs in this crate if it exists in the `alloy-consensus` crate, but was modified from the base Ethereum protocol in Scroll. For consensus types that are not modified by Scroll, the `alloy-consensus` types should be used instead. diff --git a/crates/scroll/alloy/rpc-types/src/receipt.rs b/crates/scroll/alloy/rpc-types/src/receipt.rs index 1a918ea2be62..192f15c19a1a 100644 --- a/crates/scroll/alloy/rpc-types/src/receipt.rs +++ b/crates/scroll/alloy/rpc-types/src/receipt.rs @@ -172,9 +172,9 @@ mod tests { #[test] fn serialize_empty_optimism_transaction_receipt_fields_struct() { - let op_fields = ScrollTransactionReceiptFields::default(); + let scroll_fields = ScrollTransactionReceiptFields::default(); - let json = serde_json::to_value(op_fields).unwrap(); + let json = serde_json::to_value(scroll_fields).unwrap(); assert_eq!(json, json!({})); } }