Skip to content

Commit

Permalink
fix: building error
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikol committed Mar 13, 2024
1 parent b24377e commit 09271fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/gre/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function getTestAccounts(
): Promise<SignerWithAddress[]> {
// Get list of privileged accounts we don't want as test accounts
const namedAccounts = await getNamedAccounts(provider, graphConfigPath)
const blacklist = namedAccountList.reduce((accounts, name) => {
const blacklist = namedAccountList.reduce((accounts: string[], name) => {
const account = namedAccounts[name]
if (account) {
accounts.push(account.address)
Expand Down

0 comments on commit 09271fd

Please sign in to comment.