Fix FIELD_ELEMENTS_PER_BLOB pragma (#294)

This commit is contained in:
henridf 2023-04-27 10:37:23 +02:00 committed by GitHub
parent 5b727e5c3e
commit f014ea44a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ from os import DirSep
const
# FIELD_ELEMENTS_PER_BLOB is overrideable from
# compiler switch -d: or --define:
FIELD_ELEMENTS_PER_BLOB* {.strdefine.} = 4096
FIELD_ELEMENTS_PER_BLOB* {.intdefine.} = 4096
# kzgPath: c-kzg-4844 project path, removing 3 last elem
kzgPath = currentSourcePath.rsplit(DirSep, 3)[0] & "/"
blstPath = kzgPath & "blst/"