Skip to content

Commit

Permalink
fix: fix serialization of REPL settings
Browse files Browse the repository at this point in the history
In commit cfe7af3, the new `ProjectConfig` does not serialize the REPL
settings with the correct names to be deserialized later. This struct
gets serialized by `execute_changes`.
  • Loading branch information
obycode committed Feb 12, 2022
1 parent da5f1bc commit 5fc9d08
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/types/project_manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ pub struct ProjectManifest {
pub project: ProjectConfig,
#[serde(serialize_with = "toml::ser::tables_last")]
pub contracts: BTreeMap<String, ContractConfig>,
#[serde(rename = "repl")]
pub repl_settings: repl::Settings,
}

Expand Down

0 comments on commit 5fc9d08

Please sign in to comment.