Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jiguantong committed Jul 6, 2022
1 parent cac30e9 commit 993b726
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions runtime/common/src/helixbridge/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ use frame_support::{
ensure,
pallet_prelude::*,
traits::{Currency, ExistenceRequirement, Get, WithdrawReasons},
transactional,
weights::PostDispatchInfo,
PalletId,
};
Expand Down Expand Up @@ -196,7 +195,6 @@ pub mod pallet {
#[pallet::weight(
<T as Config>::WeightInfo::issue_from_remote()
)]
#[transactional]
pub fn issue_from_remote(
origin: OriginFor<T>,
value: RingBalance<T>,
Expand Down Expand Up @@ -233,7 +231,6 @@ pub mod pallet {
#[pallet::weight(
<T as Config>::WeightInfo::burn_and_remote_unlock()
)]
#[transactional]
pub fn burn_and_remote_unlock(
origin: OriginFor<T>,
spec_version: u32,
Expand Down
3 changes: 0 additions & 3 deletions runtime/common/src/remote_government/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ use frame_support::{
ensure,
pallet_prelude::*,
traits::{Get, UnfilteredDispatchable},
transactional,
weights::GetDispatchInfo,
};
use frame_system::{ensure_signed, RawOrigin};
Expand Down Expand Up @@ -139,7 +138,6 @@ pub mod pallet {
let dispatch_info = call.get_dispatch_info();
(dispatch_info.weight.saturating_add(10_000), dispatch_info.class)
})]
#[transactional]
pub fn emergency_safeguard(
origin: OriginFor<T>,
call: AnyCall<T>,
Expand All @@ -165,7 +163,6 @@ pub mod pallet {
let dispatch_info = call.get_dispatch_info();
(dispatch_info.weight.saturating_add(10_000), dispatch_info.class)
})]
#[transactional]
pub fn enact_remote_call(
origin: OriginFor<T>,
call: AnyCall<T>,
Expand Down

0 comments on commit 993b726

Please sign in to comment.