This website requires JavaScript.
Explore
Help
Sign In
status-im
/
nim-eth
mirror of
https://github.com/status-im/nim-eth.git
Watch
2
Star
0
Fork
You've already forked nim-eth
0
Code
Issues
Projects
Releases
Wiki
Activity
f2568a64c0
nim-eth
/
tests
/
db
/
all_tests.nim
5 lines
88 B
Nim
Raw
Normal View
History
Unescape
Escape
port kvstore from nim-beacon-chain (#230) * port kvstore from nim-beacon-chain * remove old database backends * use kvstore in trie database * add sqlite dep * avoid template param double evaluation * clean up heterogenous lookup todo
2020-04-27 13:16:11 +00:00
import
Add build_dcli target and add it to CI (#344) * Add build_dcli target and add it to CI * Fix local imports for dcli * And use local imports for all other files too * Use local imports in tests and rlpx protocols
2021-04-06 11:33:24 +00:00
.
/
test_kvstore_sqlite3
,
Replace registerCustomScalarFunction with createCustomFunction (#649) * Replace registerCustomScalarFunction with createCustomFunction The nice thing about `registerCustomScalarFunction` and `registerCustomScalarFunction` was that it kept the sqlite calls of type sqlite3_value_xxx inside kvstore_sqlite. The big downside however is that the "custom" call is awfully specific due to the specific function signature it demands. It is likely that for each different use case, a new version needs to be added. In this PR the code gets altered to `createCustomFunction` which allows to just create a custom function with directly xFunc signature of sqlite. The downside of this is that you still need to import sqlite_abi in your local code to have access to each of the sqlite3_value_xxx and sqlite3_result_xxx calls. These could of course also be wrapped. * Fix custom sql func test
2023-11-21 13:39:24 +00:00
.
/
test_kvstore_sqlite3_custom_func
,
Add build_dcli target and add it to CI (#344) * Add build_dcli target and add it to CI * Fix local imports for dcli * And use local imports for all other files too * Use local imports in tests and rlpx protocols
2021-04-06 11:33:24 +00:00
.
/
test_kvstore