Skip to content

Commit

Permalink
fix: replace accindentally modifies urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Polybius93 committed Feb 3, 2025
1 parent 00f3d17 commit eaf6fbe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/network-handlers/ripple-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export class RippleHandler {
// this is to ensure that the transaction is valid for a while, and that the different attestors all use a matching LLS value to have matching sigs
// The request has a timeout, so this shouldn't end up being a hanging request
// Using the ticket system would likely be a better way:
// https://org/docs/concepts/accounts/tickets
// https://xrpl.org/docs/concepts/accounts/tickets
preparedCreateTicketTransaction.LastLedgerSequence =
Math.ceil(preparedCreateTicketTransaction.LastLedgerSequence! / 10000 + 1) * 10000;
}
Expand Down Expand Up @@ -422,7 +422,7 @@ export class RippleHandler {
// this is to ensure that the transaction is valid for a while, and that the different attestors all use a matching LLS value to have matching sigs
// The request has a timeout, so this shouldn't end up being a hanging request
// Using the ticket system would likely be a better way:
// https://org/docs/concepts/accounts/tickets
// https://xrpl.org/docs/concepts/accounts/tickets
preparedBurnTx.LastLedgerSequence =
Math.ceil(preparedBurnTx.LastLedgerSequence! / 10000 + 1) * 10000;
}
Expand Down Expand Up @@ -479,7 +479,7 @@ export class RippleHandler {
// this is to ensure that the transaction is valid for a while, and that the different attestors all use a matching LLS value to have matching sigs
// The request has a timeout, so this shouldn't end up being a hanging request
// Using the ticket system would likely be a better way:
// https://org/docs/concepts/accounts/tickets
// https://xrpl.org/docs/concepts/accounts/tickets
preparedMintTx.LastLedgerSequence =
Math.ceil(preparedMintTx.LastLedgerSequence! / 10000 + 1) * 10000;
}
Expand Down Expand Up @@ -655,7 +655,7 @@ export class RippleHandler {
// this is to ensure that the transaction is valid for a while, and that the different attestors all use a matching LLS value to have matching sigs
// The request has a timeout, so this shouldn't end up being a hanging request
// Using the ticket system would likely be a better way:
// https://org/docs/concepts/accounts/tickets
// https://xrpl.org/docs/concepts/accounts/tickets
preparedCashCheckTx.LastLedgerSequence =
Math.ceil(preparedCashCheckTx.LastLedgerSequence! / 10000 + 1) * 10000;
}
Expand Down Expand Up @@ -729,7 +729,7 @@ export class RippleHandler {
// this is to ensure that the transaction is valid for a while, and that the different attestors all use a matching LLS value to have matching sigs
// The request has a timeout, so this shouldn't end up being a hanging request
// Using the ticket system would likely be a better way:
// https://org/docs/concepts/accounts/tickets
// https://xrpl.org/docs/concepts/accounts/tickets
preparedSendTokenTx.LastLedgerSequence =
Math.ceil(preparedSendTokenTx.LastLedgerSequence! / 10000 + 1) * 10000;
}
Expand Down

0 comments on commit eaf6fbe

Please sign in to comment.