Skip to content

Commit

Permalink
remove fee recipient check
Browse files Browse the repository at this point in the history
  • Loading branch information
jianlinjiang authored and mlbones666 committed Nov 4, 2024
1 parent 1346a41 commit 3b5f133
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/node/dvfcore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,16 +447,6 @@ impl<E: EthSpec> MessageHandler for DvfDutyCheckHandler<E> {
};
let fee_recipient = block.body().execution_payload().unwrap().fee_recipient();
info!("block proposal blinded block, va pubic key {}, fee recipient {}", hex::encode(check_msg.pubkey.clone()), format!("{0:0x}", fee_recipient));
if !self.db.check_validator_fee_recipient(check_msg.pubkey, fee_recipient).await.unwrap() {
reply(
writer,
DutySafety::Invalid,
format!("fee recipient is not consistent"),
)
.await;
error!("fee recipient is not consistent");
return Ok(());
}
self.sign_block(writer, block, check_msg.domain_hash).await;
}
};
Expand Down

0 comments on commit 3b5f133

Please sign in to comment.