Browse Source

Revert local key pair path

Jonas Hahn 2 years ago
parent
commit
e81a410581
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compression/cnft-vault/anchor/tests/scripts/constants.ts

+ 1 - 1
compression/cnft-vault/anchor/tests/scripts/constants.ts

@@ -4,7 +4,7 @@ import { loadWalletKey } from "../utils";
 import { IDL } from "../../target/types/cnft_vault"
 
 export const connection = new anchor.web3.Connection("https://api.devnet.solana.com");
-export const keypair = loadWalletKey("/Users/jonasmac2/.config/solana/id.json");
+export const keypair = loadWalletKey("~/.config/solana/id.json");
 export const wallet = new anchor.Wallet(keypair);
 export const provider = new anchor.AnchorProvider(connection, wallet, {});
 export const programID = new anchor.web3.PublicKey("CNftyK7T8udPwYRzZUMWzbh79rKrz9a5GwV2wv7iEHpk")