feat: add osaka hardfork (#11984)

This commit is contained in:
Oliver
2024-10-23 16:29:32 +02:00
committed by GitHub
parent e98a050dc7
commit fa30a4f758
5 changed files with 21 additions and 2 deletions

View File

@@ -89,7 +89,8 @@ mod tests {
"terminalTotalDifficulty": 0,
"shanghaiTime": 0,
"cancunTime": 0,
"pragueTime": 0
"pragueTime": 0,
"osakaTime": 0
}
}"#;
@@ -97,5 +98,6 @@ mod tests {
assert!(spec.is_shanghai_active_at_timestamp(0));
assert!(spec.is_cancun_active_at_timestamp(0));
assert!(spec.is_prague_active_at_timestamp(0));
assert!(spec.is_osaka_active_at_timestamp(0));
}
}