Skip to content

Commit

Permalink
Remove unused vars and config
Browse files Browse the repository at this point in the history
  • Loading branch information
ebma committed Aug 8, 2024
1 parent 4bb0db5 commit 69c17c3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 0 additions & 2 deletions signer-service/src/config/vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,5 @@ module.exports = {
key: process.env.GOOGLE_PRIVATE_KEY?.split(String.raw`\n`).join('\n'),
},
sheetId: process.env.GOOGLE_SPREADSHEET_ID,
// Only used in unit tests
testSheetId: process.env.GOOGLE_TEST_SPREADSHEET_ID,
},
};
11 changes: 1 addition & 10 deletions src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@ export const config = {
maybeSignerServiceUrl,
alchemyApiKey,
defaultPage: '/pendulum/dashboard',
spreadsheet: {
googleCredentials: {
email: import.meta.env.VITE_GOOGLE_SERVICE_ACCOUNT_EMAIL,
key: import.meta.env.VITE_GOOGLE_PRIVATE_KEY?.split(String.raw`\n`).join('\n'),
},
sheetId: import.meta.env.VITE_GOOGLE_SPREADSHEET_ID,
// Only used in unit tests
testSheetId: import.meta.env.VITE_GOOGLE_TEST_SPREADSHEET_ID,
},
tenants: {
[TenantName.Amplitude]: {
name: 'Amplitude',
Expand Down Expand Up @@ -71,7 +62,7 @@ export const config = {
projectId: '299fda67fbf3b60a31ba8695524534cd',
},
test: {
mockSep24: false,
mockSep24: true,
overwriteMinimumTransferAmount: false,
},
};

0 comments on commit 69c17c3

Please sign in to comment.