Move basic utility functions from ethUtils to main utils file

This commit is contained in:
Francois Beutin
2024-01-15 18:52:12 +01:00
parent 1155bd2df0
commit 3d9da0dd16
38 changed files with 294 additions and 390 deletions

View File

@@ -157,7 +157,6 @@ if __name__ == "__main__":
"src/tokens.h",
"src/utils.h",
"src/tx_content.h",
"src/ethUtils.h",
"src/shared_context.h",
"src/eth_plugin_internal.h",
"src/nft.h",
@@ -200,7 +199,6 @@ if __name__ == "__main__":
# extract and merge function bodies
c_files_to_merge = [
"src/utils.c",
"src/ethUtils.c",
"src/eth_plugin_internal.c",
]
merge_c_files(c_files_to_merge, nodes_to_extract["fn"])