nimbus-eth1/nimbus/compile_info.nim
Jordan Hrycaj 4db9c5c2d5
Small updates and fixes for rlpx suite (#2571)
* Remove redundant `eth/68` message and clean up docu

details:
  There is only eth/68 available at the moment

* Allow to turn on chronicles line number logging in `Makefile`

* Accept (and forget) tx hashes announcements

why:
  Does no harm to just ignore it at the moment

* Bump nim-eth (rlp fix)
2024-08-19 14:00:10 +00:00

40 lines
1.1 KiB
Nim

# Nimbus
# Copyright (c) 2021-2024 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
# http://www.apache.org/licenses/LICENSE-2.0)
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
# http://opensource.org/licenses/MIT)
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.
import
./db/core_db/base/base_config,
./db/ledger/base/base_config
func vmName(): string =
when defined(evmc_enabled):
"evmc"
else:
"nimvm"
const
chronicles_line_numbers {.strdefine.} = "0"
VmName* = vmName()
warningMsg = block:
var rc = "*** Compiling with " & VmName
if chronicles_line_numbers notin ["0", "off"]:
rc &= ", logger line numbers"
when defined(boehmgc):
rc &= ", boehm/gc"
when 0 < coreDbBaseConfigExtras.len:
rc &= ", " & coreDbBaseConfigExtras
when 0 < ledgerBaseConfigExtras.len:
rc &= ", " & ledgerBaseConfigExtras
rc &= " enabled"
rc
{.warning: warningMsg.}
{.used.}