Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fmt
  • Loading branch information
ascjones committed Mar 3, 2022
commit 182a45aaf93d7c96d64834b327f5271f68fc9ebd
2 changes: 1 addition & 1 deletion src/cmd/extrinsics/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
// along with cargo-contract. If not, see <http://www.gnu.org/licenses/>.

use super::{
RuntimeEvent,
runtime_api::api::contracts::events::ContractEmitted,
transcode::{env_types, ContractMessageTranscoder, TranscoderBuilder},
RuntimeEvent,
};
use crate::{maybe_println, Verbosity, DEFAULT_KEY_COL_WIDTH};
use colored::Colorize as _;
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/extrinsics/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ use subxt::{Config, DefaultConfig};

pub use call::CallCommand;
pub use instantiate::InstantiateCommand;
pub use runtime_api::api::{DispatchError as RuntimeDispatchError, Event as RuntimeEvent};
pub use upload::UploadCommand;
pub use runtime_api::api::{Event as RuntimeEvent, DispatchError as RuntimeDispatchError};

type Balance = u128;
type CodeHash = <DefaultConfig as Config>::Hash;
Expand Down