bump up recursion limits by a lot
This commit is contained in:
parent
203a9e5f5e
commit
61b12c2eff
@ -1,4 +1,4 @@
|
|||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "1024"]
|
||||||
//! This crate contains a HTTP server which serves the endpoints listed here:
|
//! This crate contains a HTTP server which serves the endpoints listed here:
|
||||||
//!
|
//!
|
||||||
//! https://github.com/ethereum/beacon-APIs
|
//! https://github.com/ethereum/beacon-APIs
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#![cfg(not(debug_assertions))] // Tests are too slow in debug.
|
#![cfg(not(debug_assertions))] // Tests are too slow in debug.
|
||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "512"]
|
||||||
|
|
||||||
pub mod common;
|
pub mod common;
|
||||||
pub mod fork_tests;
|
pub mod fork_tests;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "512"]
|
||||||
|
|
||||||
mod metrics;
|
mod metrics;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user