Skip to content

Commit

Permalink
Fix CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DOBEN committed Jul 8, 2024
1 parent 80e8b40 commit e60eb7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/init-update-contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async fn main() -> anyhow::Result<()> {
}
Action::Update { weather, address } => {
let mut contract_client =
ContractClient::<WeatherContractMarker>::create(client, address).await?;
ContractClient::<WeatherContractMarker>::create::<anyhow::Error>(client, address).await?;
let builder = contract_client
.dry_run_update::<_, ViewError>("set", Amount::zero(), account.address, &weather)
.await?;
Expand Down

0 comments on commit e60eb7a

Please sign in to comment.