Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference tests 12.3 #5733

Merged
merged 2 commits into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ethereum/referencetests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ tasks.register('validateReferenceTestSubmodule') {
description = "Checks that the reference tests submodule is not accidentally changed"
doLast {
def result = new ByteArrayOutputStream()
def expectedHash = '04f338a6e673a6b4d906ec9d6d2bc939309357a5'
def expectedHash = '06e276776bc87817c38f6efb492bf6f4527fa904'
def submodulePath = java.nio.file.Path.of("${rootProject.projectDir}", "ethereum/referencetests/src/reference-test/external-resources").toAbsolutePath()
try {
exec {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
Hash.fromHexString(mixHash), // mixHash
Bytes.fromHexStringLenient(nonce).toLong(),
withdrawalsRoot != null ? Hash.fromHexString(withdrawalsRoot) : null,
dataGasUsed != null ? Long.parseLong(dataGasUsed) : 0,
dataGasUsed != null ? Long.decode(dataGasUsed) : 0,
Dismissed Show dismissed Hide dismissed
excessDataGas != null ? DataGas.fromHexString(excessDataGas) : null,
depositsRoot != null ? Hash.fromHexString(depositsRoot) : null,
new BlockHeaderFunctions() {
Expand All @@ -207,6 +207,10 @@
}

@JsonIgnoreProperties({
"blocknumber",
"chainname",
"chainnetwork",
"expectException",
"expectExceptionByzantium",
"expectExceptionConstantinople",
"expectExceptionConstantinopleFix",
Expand All @@ -215,11 +219,8 @@
"expectExceptionEIP158",
"expectExceptionFrontier",
"expectExceptionHomestead",
"expectException",
"blocknumber",
"chainname",
"expectExceptionALL",
"chainnetwork",
"hasBigInt",
"transactionSequence"
})
public static class CandidateBlock {
Expand Down
Loading