Skip to content

Commit

Permalink
update Updater.resolveView impl
Browse files Browse the repository at this point in the history
  • Loading branch information
sisyphusSmiling committed Dec 6, 2023
1 parent 4e8fa2b commit 04ec429
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions contracts/StagedContractUpdates.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -301,12 +301,12 @@ access(all) contract StagedContractUpdates {
if view == Type<UpdaterInfo>() {
return UpdaterInfo(
id: self.uuid,
blockUpdateBoundary: self.blockUpdateBoundary,
updateComplete: self.updateComplete,
hostAddresses: self.hosts.keys,
deployments: self.deployments,
currentDeploymentStage: self.currentDeploymentStage,
failedDeployments: self.failedDeployments
blockUpdateBoundary: self.getBlockUpdateBoundary(),
updateComplete: self.hasBeenUpdated(),
hostAddresses: self.getContractAccountAddresses(),
deployments: self.getDeployments(),
currentDeploymentStage: self.getCurrentDeploymentStage(),
failedDeployments: self.getFailedDeployments()
)
}
return nil
Expand Down

0 comments on commit 04ec429

Please sign in to comment.