Skip to content

Commit

Permalink
networkProviders: tweak error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
darrylyeo committed May 29, 2023
1 parent 7e40aad commit 5b68802
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/data/networkProviders/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const networkProviderConfigs: NetworkProviderConfig[] = [
)

if(!config)
throw new Error(`Couldn't find a Figment node matching the configuration`)
throw new Error(`Couldn't find a Pocket Network node matching the configuration.`)

return (
new ({
Expand Down Expand Up @@ -222,7 +222,7 @@ export const networkProviderConfigs: NetworkProviderConfig[] = [
)

if(!config)
throw new Error(`Couldn't find a Figment node matching the configuration`)
throw new Error(`Couldn't find a Figment node matching the configuration.`)

return (
new ({
Expand Down Expand Up @@ -254,7 +254,7 @@ export const networkProviderConfigs: NetworkProviderConfig[] = [
)

if(!config)
throw new Error(`Couldn't find a Tenderly node matching the configuration`)
throw new Error(`Couldn't find a Tenderly node matching the configuration.`)

return (
new ({
Expand Down

0 comments on commit 5b68802

Please sign in to comment.