mirror of
https://github.com/sigp/lighthouse.git
synced 2026-07-03 04:44:28 +00:00
bump up recursion limits by a lot
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user