Expose ChargedAmount (#13488)

* Expose `ChargedAmount`

* Fix imports
This commit is contained in:
Piotr Mikołajczyk
2023-03-01 14:35:32 +01:00
committed by GitHub
parent b29584d93a
commit 9720a8749a
@@ -71,7 +71,6 @@
//! on how to use a chain extension in order to provide new features to ink! contracts.
use crate::{
gas::ChargedAmount,
wasm::{Runtime, RuntimeCosts},
Error,
};
@@ -80,7 +79,7 @@ use frame_support::weights::Weight;
use sp_runtime::DispatchError;
use sp_std::{marker::PhantomData, vec::Vec};
pub use crate::{exec::Ext, Config};
pub use crate::{exec::Ext, gas::ChargedAmount, Config};
pub use frame_system::Config as SysConfig;
pub use pallet_contracts_primitives::ReturnFlags;