Skip to content

Commit

Permalink
fixup! [aptos-release-tooling] Add an option to compare release binar…
Browse files Browse the repository at this point in the history
…y with on chain configs
  • Loading branch information
runtian-zhou committed Dec 7, 2022
1 parent e7fa88e commit 17a6d00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aptos-move/aptos-release-builder/src/components/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl ReleaseConfig {
}

if let Some(gas_schedule) = &self.gas_schedule {
if !fetch_and_compare::<GasScheduleV2>(&client, &gas_schedule)? {
if !fetch_and_compare::<GasScheduleV2>(&client, gas_schedule)? {
result.append(&mut gas::generate_gas_upgrade_proposal(
gas_schedule,
self.testnet,
Expand All @@ -86,7 +86,7 @@ impl ReleaseConfig {
}

if let Some(version) = &self.version {
if !fetch_and_compare::<Version>(&client, &version)? {
if !fetch_and_compare::<Version>(&client, version)? {
result.append(&mut version::generate_version_upgrade_proposal(
version,
self.testnet,
Expand Down

0 comments on commit 17a6d00

Please sign in to comment.