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

@@ -382,7 +382,7 @@ fn test_parent_lookup_rpc_failure() {
&mut cx,
RPCError::ErrorResponse(
RPCResponseErrorCode::ResourceUnavailable,
"older than eip4844".into(),
"older than deneb".into(),
),
);
let id2 = rig.expect_parent_request();
@@ -424,7 +424,7 @@ fn test_parent_lookup_too_many_attempts() {
&mut cx,
RPCError::ErrorResponse(
RPCResponseErrorCode::ResourceUnavailable,
"older than eip4844".into(),
"older than deneb".into(),
),
);
}
@@ -467,7 +467,7 @@ fn test_parent_lookup_too_many_download_attempts_no_blacklist() {
&mut cx,
RPCError::ErrorResponse(
RPCResponseErrorCode::ResourceUnavailable,
"older than eip4844".into(),
"older than deneb".into(),
),
);
} else {
@@ -509,7 +509,7 @@ fn test_parent_lookup_too_many_processing_attempts_must_blacklist() {
&mut cx,
RPCError::ErrorResponse(
RPCResponseErrorCode::ResourceUnavailable,
"older than eip4844".into(),
"older than deneb".into(),
),
);
}