Finishes the simulation struct based on the configuration thus far.
(self)
| 307 | |
| 308 | /// Finishes the simulation struct based on the configuration thus far. |
| 309 | pub async fn build(self) -> Result<EthCallInputs, BuildError> { |
| 310 | // Forward to a helper function to split the boring repetitive builder |
| 311 | // code from the non-trivial code that actually does the encoding. |
| 312 | crate::encoding::finish_simulation_builder(self).await |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | /// Euler is the only integration for now using wrappers and they have a |