Finishes the simulation struct based on the configuration thus far.
(self)
| 316 | |
| 317 | /// Finishes the simulation struct based on the configuration thus far. |
| 318 | pub async fn build(self) -> Result<EthCallInputs, BuildError> { |
| 319 | // Forward to a helper function to split the boring repetitive builder |
| 320 | // code from the non-trivial code that actually does the encoding. |
| 321 | crate::encoding::finish_simulation_builder(self).await |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | /// Euler is the only integration for now using wrappers and they have a |