From 7b5843500117d6110fbfd00085bf231c5b70f1ca Mon Sep 17 00:00:00 2001 From: dospore Date: Mon, 26 Feb 2024 13:16:26 +1000 Subject: [PATCH] Remove old code --- beacon_node/execution_layer/src/block_hash.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/beacon_node/execution_layer/src/block_hash.rs b/beacon_node/execution_layer/src/block_hash.rs index df448afc80..2b7da01615 100644 --- a/beacon_node/execution_layer/src/block_hash.rs +++ b/beacon_node/execution_layer/src/block_hash.rs @@ -62,12 +62,6 @@ pub fn calculate_execution_block_hash( pub fn rlp_encode_withdrawal(withdrawal: &JsonWithdrawal) -> Vec { let mut out: Vec = vec![]; EncodableJsonWithdrawal::from(withdrawal).encode(&mut out); - // rlp_stream.begin_list(4); - // rlp_stream.append(&withdrawal.index); - // rlp_stream.append(&withdrawal.validator_index); - // rlp_stream.append(&withdrawal.address); - // rlp_stream.append(&withdrawal.amount); - // rlp_stream.out().into() out }