You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(ENV_SCRIPT) nim c -r $(NIM_PARAMS) -d:chronicles_log_level=ERROR -d:mergeBlockNumber:38130 -d:nimbus_db_backend=sqlite -o:build/$@"portal/tests/history_network_tests/$@.nim"
294
+
$(ENV_SCRIPT) nim c -r $(NIM_PARAMS) -d:chronicles_log_level=ERROR -d:mergeBlockNumber:38130 -o:build/$@"portal/tests/history_network_tests/$@.nim"
295
295
296
296
all_portal_tests: | build deps
297
297
echo -e $(BUILD_MSG)"build/$@"&&\
298
-
$(ENV_SCRIPT) nim c -r $(NIM_PARAMS) -d:chronicles_log_level=ERROR -d:nimbus_db_backend=sqlite -o:build/$@"portal/tests/$@.nim"
298
+
$(ENV_SCRIPT) nim c -r $(NIM_PARAMS) -d:chronicles_log_level=ERROR -o:build/$@"portal/tests/$@.nim"
### <aname="make-xvars"></a>Experimental make variables
182
179
@@ -201,12 +198,6 @@ has the same effect as <variable>=1 (ditto for other numbers.)
201
198
202
199
Interesting Make variables and targets are documented in the [nimbus-build-system](https://github.com/status-im/nimbus-build-system) repo.
203
200
204
-
- you can switch the DB backend with a Nim compiler define:
205
-
`-d:nimbus_db_backend=...` where the (case-insensitive) value is one of
206
-
"rocksdb" (the default), "sqlite", "lmdb"
207
-
208
-
- the Premix debugging tools are [documented separately](premix/readme.md)
209
-
210
201
- you can control the Makefile's verbosity with the V variable (defaults to 0):
211
202
212
203
```bash
@@ -217,8 +208,8 @@ make V=2 test # even more verbose
217
208
- same for the [Chronicles log level](https://github.com/status-im/nim-chronicles#chronicles_log_level):
218
209
219
210
```bash
220
-
make LOG_LEVEL=DEBUG nimbus# this is the default
221
-
make LOG_LEVEL=TRACE nimbus# log everything
211
+
make LOG_LEVEL=DEBUG nimbus_execution_client# this is the default
212
+
make LOG_LEVEL=TRACE nimbus_execution_client# log everything
222
213
```
223
214
224
215
- pass arbitrary parameters to the Nim compiler:
@@ -315,7 +306,7 @@ Install Prometheus and Grafana. On Gentoo, it's `emerge prometheus grafana-bin`.
315
306
316
307
```bash
317
308
# build Nimbus execution client
318
-
make nimbus
309
+
make nimbus_execution_client
319
310
# the Prometheus daemon will create its data dir in the current dir, so give it its own directory
320
311
mkdir ../my_metrics
321
312
# copy the basic config file over there
@@ -349,7 +340,7 @@ to the combined view. To edit a panel, click on its title and select "Edit".
349
340
350
341
### Troubleshooting
351
342
352
-
Report any errors you encounter, please, if not [already documented](https://github.com/status-im/nimbus/issues)!
343
+
Report any errors you encounter, please, if not [already documented](https://github.com/status-im/nimbus-eth1/issues)!
0 commit comments