diff --git a/CHANGELOG.md b/CHANGELOG.md index d05b9e87..92536c8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - Function to calculate the kzg proof of x_0. - Tests for updating the state. - Function to update the state and publish blob on ethereum in state update job. +- Fixtures for testing. - Added basic rust-toolchain support. ## Changed +- GitHub's coverage CI yml file for localstack and db testing. +- Orchestrator :Moved TestConfigBuilder to `config.rs` in tests folder. + ## Removed - `fetch_from_test` argument diff --git a/crates/orchestrator/src/config.rs b/crates/orchestrator/src/config.rs index 5ae43681..1dca6759 100644 --- a/crates/orchestrator/src/config.rs +++ b/crates/orchestrator/src/config.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use crate::data_storage::aws_s3::config::AWSS3Config; +use crate::data_storage::aws_s3::config::{AWSS3Config, AWSS3ConfigType}; use crate::data_storage::aws_s3::AWSS3; use crate::data_storage::{DataStorage, DataStorageConfig}; use aptos_da_client::config::AptosDaConfig;