Rename eip4844 to deneb (#4129)

* rename 4844 to deneb

* rename 4844 to deneb

* move excess data gas field

* get EF tests working

* fix ef tests lint

* fix the blob identifier ef test

* fix accessed files ef test script

* get beacon chain tests passing
This commit is contained in:
realbigsean
2023-03-26 11:49:16 -04:00
committed by GitHub
parent d84117c0d0
commit a5addf661c
90 changed files with 572 additions and 549 deletions

View File

@@ -287,7 +287,7 @@ impl<T: BeaconChainTypes> Worker<T> {
Err(BeaconChainError::NoKzgCommitmentsFieldOnBlock) => {
debug!(
self.log,
"Peer requested blobs for a pre-eip4844 block";
"Peer requested blobs for a pre-deneb block";
"peer" => %peer_id,
"block_root" => ?root,
);
@@ -707,11 +707,11 @@ impl<T: BeaconChainTypes> Worker<T> {
let data_availability_boundary = match self.chain.data_availability_boundary() {
Some(boundary) => boundary,
None => {
debug!(self.log, "Eip4844 fork is disabled");
debug!(self.log, "Deneb fork is disabled");
self.send_error_response(
peer_id,
RPCResponseErrorCode::ServerError,
"Eip4844 fork is disabled".into(),
"Deneb fork is disabled".into(),
request_id,
);
return;