-
Notifications
You must be signed in to change notification settings - Fork 108
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
Update test fixture to send WETH to a non-existent account on AssetHub #1174
Changes from 4 commits
bfa8b59
03610ae
202bc95
1cbb4fa
700da0d
e1d4c14
02ab816
78489ff
f7aa961
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -85,13 +85,24 @@ config_xcm_version() { | |||||||
send_governance_transact_from_relaychain $ASSET_HUB_PARAID "$call" | ||||||||
} | ||||||||
|
||||||||
config_penpal() { | ||||||||
# System::set_storage(CustomizableAssetFromSystemAssetHub,Ethereum) | ||||||||
local call=0x00040440770800eb78be69c327d8334d0927607220020109079edaa802 | ||||||||
send_governance_transact_from_relaychain $PENPAL_PARAID "$call" | ||||||||
|
||||||||
# foreignAssets::force_create(WETH) | ||||||||
local call=0x3301020209079edaa802030087d1f7fdfee7f651fabc8bfcb6e086c278b77a7d00d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d0104 | ||||||||
send_governance_transact_from_relaychain $PENPAL_PARAID "$call" | ||||||||
} | ||||||||
|
||||||||
configure_substrate() { | ||||||||
set_gateway | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Penpal is not allowed to execute sudo operation through xcm, it's a test chain which itself has the sudo pallet. Explicit the call here but not execute, only for a hint. |
||||||||
fund_accounts | ||||||||
wait_beacon_chain_ready | ||||||||
config_beacon_checkpoint | ||||||||
open_hrmp_channels | ||||||||
config_xcm_version | ||||||||
config_penpal | ||||||||
} | ||||||||
|
||||||||
if [ -z "${from_start_services:-}" ]; then | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's why we print the key value in Snowfork/polkadot-sdk#137 (comment)