Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
595a495
Change `HaulBlobExporter` for `pallet_xcm_bridge_hub` implementation
bkontur Dec 4, 2023
33ef030
Backported `pallet_xcm_bridge_hub` with `ExportXcm` implementation
bkontur Dec 4, 2023
165a369
Fix import
bkontur Dec 4, 2023
1b92bd9
Revert
bkontur Dec 4, 2023
60ac0af
zepter
bkontur Dec 4, 2023
075124f
Validation for dest
bkontur Dec 4, 2023
4fd5ab6
Merge remote-tracking branch 'origin/master' into bko-bridge-origin-c…
bkontur Dec 4, 2023
c595123
wip
bkontur Dec 4, 2023
3d7e481
Merge remote-tracking branch 'origin/master' into bko-bridge-origin-c…
bkontur Dec 4, 2023
db6543a
Add also `NetworkId` to the validation
bkontur Dec 5, 2023
96af012
Merge remote-tracking branch 'origin/master' into bko-bridge-origin-c…
bkontur Dec 5, 2023
0b39669
Squashed 'bridges/' changes from 277f0d5496..09215c57eb
bkontur Dec 5, 2023
3cab27b
Merge commit '0b39669da41c16bdab46042cc6e33ce7f0e5969b' into bko-brid…
bkontur Dec 5, 2023
9942286
Fix Cargo.tomls for taplo
bkontur Dec 5, 2023
f1a3847
Merge branch 'master' into bko-bridge-origin-check
bkontur Dec 5, 2023
73a5718
taplo for unrelated toml
bkontur Dec 5, 2023
a7e6167
Merge remote-tracking branch 'origin/bko-bridges-update-subtree' into…
bkontur Dec 5, 2023
0bead68
Merge remote-tracking branch 'origin/master' into bko-bridge-origin-c…
bkontur Dec 5, 2023
aaebb41
Fix try-runtime
bkontur Dec 5, 2023
ee85856
Fix benchmarks
bkontur Dec 6, 2023
3756e83
Merge remote-tracking branch 'origin/master' into bko-bridge-origin-c…
bkontur Dec 6, 2023
8e30c83
Merge remote-tracking branch 'origin/master' into bko-bridge-origin-c…
bkontur Dec 6, 2023
03de1a0
Squashed 'bridges/' changes from 09215c57eb..06fbe8bbbb
bkontur Dec 6, 2023
6bacb0b
Merge commit '03de1a05e86869c53773af303dc461a3a0478fd7' into bko-brid…
bkontur Dec 6, 2023
4ea1306
Fixes after subtree update
bkontur Dec 6, 2023
4c02532
Fix benchmarks
bkontur Dec 6, 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
Prev Previous commit
Next Next commit
Fix Cargo.tomls for taplo
  • Loading branch information
bkontur committed Dec 5, 2023
commit 9942286ce777f886d5a7f8692d99c0eb06da95b9
2 changes: 1 addition & 1 deletion bridges/modules/messages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pallet-balances = { path = "../../../substrate/frame/balances" }
sp-io = { path = "../../../substrate/primitives/io" }

[features]
default = [ "std" ]
default = ["std"]
std = [
"bp-messages/std",
"bp-runtime/std",
Expand Down
2 changes: 1 addition & 1 deletion bridges/modules/xcm-bridge-hub-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sp-io = { path = "../../../substrate/primitives/io" }
sp-std = { path = "../../../substrate/primitives/std" }

[features]
default = [ "std" ]
default = ["std"]
std = [
"bp-xcm-bridge-hub-router/std",
"codec/std",
Expand Down
2 changes: 1 addition & 1 deletion bridges/modules/xcm-bridge-hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ runtime-benchmarks = [
"sp-runtime/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
]
]
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ std = [
"pallet-transaction-payment/std",
"pallet-utility/std",
"pallet-xcm-benchmarks?/std",
"pallet-xcm/std",
"pallet-xcm-bridge-hub/std",
"pallet-xcm/std",
"parachain-info/std",
"parachains-common/std",
"polkadot-core-primitives/std",
Expand Down Expand Up @@ -209,8 +209,8 @@ runtime-benchmarks = [
"pallet-timestamp/runtime-benchmarks",
"pallet-utility/runtime-benchmarks",
"pallet-xcm-benchmarks/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"pallet-xcm-bridge-hub/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"parachains-common/runtime-benchmarks",
"polkadot-parachain-primitives/runtime-benchmarks",
"polkadot-runtime-common/runtime-benchmarks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ std = [
"pallet-transaction-payment/std",
"pallet-utility/std",
"pallet-xcm-benchmarks?/std",
"pallet-xcm/std",
"pallet-xcm-bridge-hub/std",
"pallet-xcm/std",
"parachain-info/std",
"parachains-common/std",
"polkadot-core-primitives/std",
Expand Down Expand Up @@ -199,8 +199,8 @@ runtime-benchmarks = [
"pallet-timestamp/runtime-benchmarks",
"pallet-utility/runtime-benchmarks",
"pallet-xcm-benchmarks/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"pallet-xcm-bridge-hub/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"parachains-common/runtime-benchmarks",
"polkadot-parachain-primitives/runtime-benchmarks",
"polkadot-runtime-common/runtime-benchmarks",
Expand Down