Skip to content

Commit f115f8a

Browse files
committed
typo
1 parent 7c601f7 commit f115f8a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

auction-house/cli/src/commands/upload.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ export async function upload({
691691
// Compile a sorted list of assets which need to be uploaded.
692692
const dedupedAssetKeys = getAssetKeysNeedingUpload(cache.items, files);
693693

694-
// Initialize variables that might be needed for uploded depending on storage
694+
// Initialize variables that might be needed for uploaded depending on storage
695695
// type.
696696
// These will be needed anyway either to initialize the
697697
// Candy Machine Custom Program configuration, or to write the assets

auction-house/cli/src/helpers/transactions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const sendTransactionWithRetryWithKeypair = async (
4040
transaction.setSigners(...signers.map(s => s.publicKey));
4141
} else {
4242
transaction.setSigners(
43-
// fee payed by the wallet owner
43+
// fee paid by the wallet owner
4444
wallet.publicKey,
4545
...signers.map(s => s.publicKey),
4646
);

auction-house/cli/src/helpers/upload/arweave-bundle.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ export const withdrawBundlr = async (walletKeyPair: Keypair) => {
744744
} else if (withdrawResponse.status == 400) {
745745
log.info(withdrawResponse.data);
746746
log.info(
747-
'Withdraw unsucessful. An additional attempt will be made after all files are uploaded.',
747+
'Withdraw unsuccessful. An additional attempt will be made after all files are uploaded.',
748748
);
749749
}
750750
} catch (err) {

auction-house/cli/src/helpers/upload/nft-storage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export async function* nftStorageUploadGenerator({
5050
}): AsyncGenerator<NftStorageBundleUploadResult> {
5151
// split asset keys into batches, each of which will be bundled into a CAR file and uploaded separately
5252
// default to 50 NFTs per "batch" if no batchSize is given.
53-
// larger batches require fewer signatures and will be slightly faster overall if everything is sucessful,
53+
// larger batches require fewer signatures and will be slightly faster overall if everything is successful,
5454
// but smaller batches will take less time to retry if there's an error during upload.
5555
batchSize = batchSize || 50;
5656
batchSize = Math.min(batchSize, NFTBundle.MAX_ENTRIES);

fixed-price-sale/cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ fn main() -> Result<(), error::Error> {
456456
}
457457
};
458458

459-
// Send builded transactions
459+
// Send built transactions
460460
if let Some(txs_bundle) = txs_data {
461461
for (tx, ui_info) in txs_bundle {
462462
client.send_and_confirm_transaction(&tx)?;

fixed-price-sale/program/src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use anchor_lang::{
88
use mpl_token_metadata::state::EDITION_MARKER_BIT_SIZE;
99

1010
pub const NAME_MAX_LEN: usize = 40; // max len of a string buffer in bytes
11-
pub const NAME_DEFAULT_SIZE: usize = 4 + NAME_MAX_LEN; // max lenght of serialized string (str_len + <buffer>)
11+
pub const NAME_DEFAULT_SIZE: usize = 4 + NAME_MAX_LEN; // max length of serialized string (str_len + <buffer>)
1212
pub const DESCRIPTION_MAX_LEN: usize = 60;
1313
pub const DESCRIPTION_DEFAULT_SIZE: usize = 4 + DESCRIPTION_MAX_LEN;
1414
pub const HOLDER_PREFIX: &str = "holder";

0 commit comments

Comments
 (0)