Zero Xplorer преди 2 месеца
родител
ревизия
ea44da2bdb
променени са 3 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 1 1
      tests/auction-house/tests/auction-house.ts
  2. 1 1
      tests/cfo/programs/cfo/src/lib.rs
  3. 1 1
      tests/lockup/programs/lockup/src/lib.rs

+ 1 - 1
tests/auction-house/tests/auction-house.ts

@@ -43,7 +43,7 @@ describe("auction-house", () => {
   const wallet = getProvider().wallet as Wallet;
 
   // Clients.
-  let authorityClient: Program<AuctionHouse>; // Reprents the exchange authority.
+  let authorityClient: Program<AuctionHouse>; // Represents the exchange authority.
   let sellerClient: Program<AuctionHouse>; // Represents the seller.
   let buyerClient: Program<AuctionHouse>; // Represents the buyer.
   let nftMintClient: Token; // Represents the NFT to be traded.

+ 1 - 1
tests/cfo/programs/cfo/src/lib.rs

@@ -669,7 +669,7 @@ pub struct DropStakeRewardPool<'info> {
 /// PDA - [dex_program_id].
 #[account]
 pub struct Officer {
-    // Priviledged account.
+    // Privileged account.
     pub authority: Pubkey, // 32
     // Vault holding the officer's SRM tokens prior to distribution.
     pub srm_vault: Pubkey, // 32

+ 1 - 1
tests/lockup/programs/lockup/src/lib.rs

@@ -154,7 +154,7 @@ pub mod lockup {
             return err!(ErrorCode::WhitelistWithdrawLimit);
         }
 
-        // Bookeeping.
+        // Bookkeeping.
         ctx.accounts.transfer.vesting.whitelist_owned += withdraw_amount;
 
         Ok(())