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

Fixed typos #660

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 scripts/load-test-faucet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function main() {
faucet.fundAccount(accountId, Kintsugi)
);
}
console.log(`Making ${users} simulatenous faucet requests...`);
console.log(`Making ${users} simultaneous faucet requests...`);
await Promise.all(promises);
console.log("Finished");
}
2 changes: 1 addition & 1 deletion scripts/verify-vaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ApiPromise, WsProvider } from '@polkadot/api';

/**
* This script allows to verify that Vaults are replicated on another networks.
* This script was orginially used to verify the correctness of the Kintsugi Vault v6
* This script was originally used to verify the correctness of the Kintsugi Vault v6
* migration bug.
*/
async function main() {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/issueRedeem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const getRedeemRequestsFromExtrinsicResult = async (
* for redeem) and an amount to allocate, selects one or more vaults to fulfil
* the request.
* If the amount cannot be allocated by a single vault, greedily selects the vault
* with highest available amount and tries again for the remainder. If at leaast
* with highest available amount and tries again for the remainder. If at least
* one vault can fulfil a request alone, a random one among them is selected.
**/
export function allocateAmountsToVaults(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import {
} from "../../../../utils/helpers";
import { Nomination } from "../../../../../src/parachain/nomination";

// TODO: readd this once we want to activate nomination
// TODO: re-add this once we want to activate nomination
describe.skip("NominationAPI", () => {
let api: ApiPromise;
let userInterBtcAPI: InterBtcApi;
Expand Down