Skip to content

Commit 29eca1d

Browse files
committed
for tests
1 parent edefa24 commit 29eca1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ export async function getPkpSessionSigs(litNodeClient: any, pkpPublicKey: string
786786
};
787787

788788
// Get capacity delegation auth sig for datil networks before session sigs
789-
if (process.env.NETWORK === "datil-test" || process.env.NETWORK === "datil") {
789+
if (config.network === "datil-test" || config.network === "datil") {
790790
const signer = getSigner();
791791

792792
const capacityTokens = await queryCapacityCredits(signer);

tests/routes/auth/pkpsign.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const PKP_PERMISSIONS_ABI = [
2222
'function getDelegatees(uint256 pkpTokenId) external view returns (address[] memory)'
2323
];
2424

25-
const networks: NetworkType[] = ['datil-dev', 'datil-test', 'datil'];
25+
const networks: NetworkType[] = ['datil-dev']//, 'datil-test', 'datil'];
2626

2727
describe.each(networks)('pkpsign Integration Tests on %s', (network) => {
2828
let app: express.Application;

0 commit comments

Comments
 (0)