Skip to content

Commit 5bb8b62

Browse files
committed
trigger CI
1 parent d7fe602 commit 5bb8b62

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

execution_chain/version.nim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ const
1818

1919
static:
2020
doAssert(nimbusRevision.len == 8, "nimbusRevision must consist of 8 characters")
21-
doAssert(nimbusRevision.allIt(it in HexDigits), "nimbusRevision should contains only hex chars")
21+
doAssert(
22+
nimbusRevision.allIt(it in HexDigits),
23+
"nimbusRevision should contains only hex chars",
24+
)
2225

2326
proc gitFolderExists(path: string): bool {.compileTime.} =
2427
# walk up parent folder to find `.git` folder

0 commit comments

Comments
 (0)