Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/contract_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ impl<Type> ContractInitBuilder<Type> {
.await?
.inner;

let data = match result.details.effects.known_or_else(|| {
let data = match result.details.effects.known_or_else(|_unknown| {
dry_run::DryRunError::CallError(tonic::Status::invalid_argument(
"Unexpected response from dry-running a contract initialization.",
))
Expand Down Expand Up @@ -580,7 +580,7 @@ impl ModuleDeployBuilder {
.await?
.inner;

let module_ref = match result.details.effects.known_or_else(|| {
let module_ref = match result.details.effects.known_or_else(|_unknown| {
dry_run::DryRunError::CallError(tonic::Status::invalid_argument(
"Unexpected response from dry-running a module deployment.",
))
Expand Down
3 changes: 1 addition & 2 deletions src/v2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ use crate::{
},
};
use anyhow::Context;
pub use concordium_base::common::upward::{self, Upward};
use concordium_base::{
base::{
AccountIndex, BlockHeight, ChainParameterVersion0, ChainParameterVersion1,
Expand Down Expand Up @@ -51,13 +52,11 @@ pub use tonic::{
transport::{Endpoint, Error},
Code, Status,
};
pub use upward::Upward;

use self::dry_run::WithRemainingQuota;

mod conversions;
pub mod dry_run;
pub mod upward;
#[path = "generated/mod.rs"]
#[allow(
clippy::large_enum_variant,
Expand Down
290 changes: 0 additions & 290 deletions src/v2/upward.rs

This file was deleted.