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

correct the link to the fees page #5887

Merged
merged 1 commit into from
May 10, 2024
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
2 changes: 1 addition & 1 deletion docs/learn/xcm/fundamentals/weight_and_fees.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ local system, usually by the origin of the message, because we are using the mes
mechanism maintained by the origin. Similarly, the execution fees are paid on the destination
system, via the `BuyExecution` instruction. In other words, XCMs are paid for via their own
instructions. We'll talk more about `BuyExecution` in the
[fee handling chapter](../journey/fees/index.html).
[fee handling chapter](../journey-fees/index.html).

XCM is agnostic, which means it doesn't assume fees need to be paid. It's entirely possible to not
pay for the effects of an XCM on the destination system. Even in systems where fees have to be paid,
Expand Down
2 changes: 1 addition & 1 deletion docs/learn/xcm/journey/fees.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ the receiving chain. As mentioned in the [weight and fees](../fundamentals/weigh
chapter of the fundamentals, XCMs instructions are usually assigned weights separately, so, in order
to estimate the weight, you need to estimate the weight of every instruction and add them together.
By using `WeightLimit::Limited()`, you guarantee the message will error if it tries to use more
weight than you expect, if you don't mind this, you can use `WeightLimit::Unlimited`. The
weight than you expect. If you don't mind this, you can use `WeightLimit::Unlimited`. The
`fee_estimation` value is the maximum assets you want to use, if it doesn't cover all fees, message
execution will fail. You can add a higher value (all of `withdraw_amount` for example) to make sure
you have enough assets for fee payment. If you plan to use the entirety of `withdraw_amount`,
Expand Down
Loading