Skip to content
Closed
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
6 changes: 3 additions & 3 deletions substrate/frame/revive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub use crate::{
address::{
create1, create2, is_eth_derived, AccountId32Mapper, AddressMapper, TestAccountMapper,
},
exec::{DelegateInfo, Key, MomentOf, Origin as ExecOrigin},
exec::{DelegateInfo, Executable, Key, MomentOf, Origin as ExecOrigin},
pallet::{genesis, *},
storage::{AccountInfo, ContractInfo},
};
Expand All @@ -57,7 +57,7 @@ use crate::{
create_call, fees::InfoT as FeeInfo, runtime::SetWeightLimit, CallTracer,
GenericTransaction, PrestateTracer, Trace, Tracer, TracerType, TYPE_EIP1559,
},
exec::{AccountIdOf, ExecError, Executable, Stack as ExecStack},
exec::{AccountIdOf, ExecError, Stack as ExecStack},
gas::GasMeter,
storage::{meter::Meter as StorageMeter, AccountType, DeletionQueueManager},
tracing::if_tracing,
Expand Down Expand Up @@ -1851,7 +1851,7 @@ impl<T: Config> Pallet<T> {
}

/// Uploads new code and returns the Vm binary contract blob and deposit amount collected.
fn try_upload_pvm_code(
pub fn try_upload_pvm_code(
origin: T::AccountId,
code: Vec<u8>,
storage_deposit_limit: BalanceOf<T>,
Expand Down
Loading