Move beacon pool http api to its own separate module (#8543)

Continuation of:
* #8536

Moving `/beacon/pool` endpoints out of `http_api` to a separation module. This should improve code maintainability, incremental compilation time and rust analyzer performance.

This is a tedious but straight forward change, so we're going with a pair & insta-merge approach to avoid painful & slow async review


  


Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com>
This commit is contained in:
Jimmy Chen
2025-12-05 21:59:42 +11:00
committed by GitHub
parent e27f31648f
commit 2afa87879b
4 changed files with 563 additions and 422 deletions

View File

@@ -1 +1,2 @@
pub mod pool;
pub mod states;