Skip to content

Commit

Permalink
correct the link to the fees page (#5887)
Browse files Browse the repository at this point in the history
  • Loading branch information
spazcoin authored May 10, 2024
1 parent 6dabb79 commit 085320f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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).

This comment has been minimized.


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

0 comments on commit 085320f

Please sign in to comment.