10 lines
238 B
RPMSpec
Raw Permalink Normal View History

2023-12-05 14:37:05 +05:30
methods {
function root() external returns (uint256) envfree;
}
rule checkDefaultRootIsCorrect {
uint256 defaultRoot = 15019797232609675441998260052101280400536945603062888308240081994073687793470;
2023-12-05 15:08:28 +05:30
assert root() == defaultRoot;
2023-12-05 14:37:05 +05:30
}