We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24377e commit 09271fdCopy full SHA for 09271fd
packages/sdk/src/gre/accounts.ts
@@ -53,7 +53,7 @@ export async function getTestAccounts(
53
): Promise<SignerWithAddress[]> {
54
// Get list of privileged accounts we don't want as test accounts
55
const namedAccounts = await getNamedAccounts(provider, graphConfigPath)
56
- const blacklist = namedAccountList.reduce((accounts, name) => {
+ const blacklist = namedAccountList.reduce((accounts: string[], name) => {
57
const account = namedAccounts[name]
58
if (account) {
59
accounts.push(account.address)
0 commit comments