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
9 changes: 9 additions & 0 deletions prdoc/pr_9606.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
title: Expose account/contract revive types to use externally
doc:
- audience: Runtime User
description: |-
Exposes revive types to use in foundry-polkadot project.

crates:
- name: pallet-revive
bump: patch
5 changes: 2 additions & 3 deletions substrate/frame/revive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ use crate::{
},
exec::{AccountIdOf, ExecError, Executable, Stack as ExecStack},
gas::GasMeter,
storage::{
meter::Meter as StorageMeter, AccountInfo, AccountType, ContractInfo, DeletionQueueManager,
},
storage::{meter::Meter as StorageMeter, AccountType, DeletionQueueManager},
tracing::if_tracing,
vm::{CodeInfo, ContractBlob, RuntimeCosts},
};
Expand Down Expand Up @@ -91,6 +89,7 @@ pub use crate::{
},
exec::{Key, MomentOf, Origin},
pallet::*,
storage::{AccountInfo, ContractInfo},
};
pub use codec;
pub use frame_support::{self, dispatch::DispatchInfo, weights::Weight};
Expand Down
Loading