Skip to content

Commit 09271fd

Browse files
committed
fix: building error
1 parent b24377e commit 09271fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sdk/src/gre/accounts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export async function getTestAccounts(
5353
): Promise<SignerWithAddress[]> {
5454
// Get list of privileged accounts we don't want as test accounts
5555
const namedAccounts = await getNamedAccounts(provider, graphConfigPath)
56-
const blacklist = namedAccountList.reduce((accounts, name) => {
56+
const blacklist = namedAccountList.reduce((accounts: string[], name) => {
5757
const account = namedAccounts[name]
5858
if (account) {
5959
accounts.push(account.address)

0 commit comments

Comments
 (0)