Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove set_owner #68

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
91fbcec
Upgrade for Control pallet
yrong Aug 29, 2023
a2c518a
Update dependency
yrong Aug 31, 2023
3496ebc
Allow utility call through xcm
yrong Aug 31, 2023
d83bdb3
Add SovereignAccountOf
yrong Aug 31, 2023
37413dd
More refactor
yrong Sep 4, 2023
3a7d5dd
Add FeeProvider config
yrong Sep 5, 2023
9f68486
Allow xcm to config base_fee
yrong Sep 5, 2023
9bb56aa
Remove unused
yrong Sep 5, 2023
6e6a0b6
Merge branch 'snowbridge' into ron/oak-sno-624
yrong Sep 7, 2023
9d7f7cb
Merge branch 'snowbridge' into ron/oak-sno-624
yrong Sep 11, 2023
7e62e96
Move config to outbound queue
yrong Sep 13, 2023
0e14a70
Update dependency
yrong Sep 13, 2023
d84ae93
Use Treasury account to collect fees
yrong Sep 22, 2023
1a1ab19
Remove unused const
yrong Sep 22, 2023
f15a752
Add configs
yrong Sep 22, 2023
722d098
Clean dependencies
yrong Sep 23, 2023
aa52862
Add estimate rpc
yrong Sep 26, 2023
3e1db63
Add runtime api
yrong Sep 27, 2023
304c896
runtime api for compute_fee_reward
yrong Sep 27, 2023
98cffe2
Use TreasuryAccount more specific
yrong Sep 28, 2023
870bf36
Cleanup
yrong Sep 28, 2023
e3d87a1
Update rococo runtime
vgeddes Oct 3, 2023
3677f64
update
vgeddes Oct 4, 2023
3c7bd12
Update weights
vgeddes Oct 4, 2023
28e108b
Fix for smoke test
yrong Oct 5, 2023
5508ea9
Update rococo runtime
vgeddes Oct 8, 2023
3671c1f
Remove set_owner
yrong Oct 9, 2023
755b82a
update benchmarking logic in cumulus
vgeddes Oct 9, 2023
bcc516e
Merge recent change
yrong Oct 10, 2023
edec01d
Merge recent changes
yrong Oct 17, 2023
5057a99
Merge branch 'snowbridge' into ron/sno-652
yrong Oct 18, 2023
d0157c5
Merge from recent
yrong Oct 18, 2023
7f2151c
Merge branch 'snowbridge' into ron/sno-652
yrong Oct 20, 2023
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
61 changes: 18 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,9 @@ impl Contains<RuntimeCall> for SafeCallFilter {
>::initialize { .. }) |
RuntimeCall::EthereumBeaconClient(
snowbridge_ethereum_beacon_client::Call::force_checkpoint { .. } |
snowbridge_ethereum_beacon_client::Call::set_owner { .. } |
snowbridge_ethereum_beacon_client::Call::set_operating_mode { .. },
) | RuntimeCall::EthereumInboundQueue(
snowbridge_inbound_queue::Call::set_owner { .. } |
snowbridge_inbound_queue::Call::set_operating_mode { .. },
snowbridge_inbound_queue::Call::set_operating_mode { .. },
) | RuntimeCall::EthereumOutboundQueue(..) |
RuntimeCall::EthereumControl(..)
)
Expand Down
Loading