mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-02-11 03:27:00 +00:00
* Return slots when verifying witness regardless of code length. * Prevent AccountCache WitnessData codeTouched from being reset. * Default to using {wfNoFlag} for witness flags in tests to allow running with data from before EIP170. * Add additional json files to experimental JSON RPC test. * Use HTTP RPC server in tests. * Add test to check that block witness contains bytecode.
29 lines
563 B
Nim
29 lines
563 B
Nim
# Nimbus
|
|
# Copyright (c) 2022-2024 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
# at your option.
|
|
# This file may not be copied, modified, or distributed except according to
|
|
# those terms.
|
|
|
|
import
|
|
./rpc/common,
|
|
./rpc/debug,
|
|
./rpc/engine_api,
|
|
./rpc/p2p,
|
|
./rpc/jwt_auth,
|
|
./rpc/cors,
|
|
./rpc/rpc_server,
|
|
./rpc/experimental
|
|
|
|
export
|
|
common,
|
|
debug,
|
|
engine_api,
|
|
p2p,
|
|
jwt_auth,
|
|
cors,
|
|
rpc_server,
|
|
experimental
|