temporay disable test_merge

This commit is contained in:
jangko 2022-03-11 16:25:23 +07:00
parent 400722f1fa
commit a4b70918ed
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 4 additions and 2 deletions

View File

@ -137,7 +137,7 @@ proc toId(x: int): PayloadId =
proc `==`(a, b: Quantity): bool =
uint64(a) == uint64(b)
proc main() =
proc testEngineApiSupport() =
var db = newBaseChainDB(newMemoryDB())
var api = EngineAPI.new()
let
@ -170,7 +170,9 @@ proc main() =
check eh2.gasLimit == hdr2.gasLimit
proc mergeMain*() =
testEngineAPI()
# temporary disable it until engine API more stable
# testEngineAPI()
testEngineApiSupport()
when isMainModule:
mergeMain()