Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos committed Oct 16, 2023
1 parent b5fb191 commit 6752e22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion staking/tests/staking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe("staking", async () => {
config,
pythMintAccount,
pythMintAuthority,
makeDefaultConfig(pythMintAccount.publicKey, PublicKey.unique())
makeDefaultConfig(pythMintAccount.publicKey)
));
program = stakeConnection.program;
provider = stakeConnection.provider;
Expand Down
2 changes: 1 addition & 1 deletion staking/tests/unlock_api_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe("unlock_api", async () => {
config,
pythMintAccount,
pythMintAuthority,
makeDefaultConfig(pythMintAccount.publicKey, PublicKey.unique())
makeDefaultConfig(pythMintAccount.publicKey)
));

EPOCH_DURATION = stakeConnection.config.epochDuration;
Expand Down
2 changes: 1 addition & 1 deletion staking/tests/vesting_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe("vesting", async () => {
config,
pythMintAccount,
pythMintAuthority,
makeDefaultConfig(pythMintAccount.publicKey, PublicKey.unique())
makeDefaultConfig(pythMintAccount.publicKey)
));

EPOCH_DURATION = stakeConnection.config.epochDuration;
Expand Down

0 comments on commit 6752e22

Please sign in to comment.