Skip to content

Commit

Permalink
Disable unreachable endpoints (#9839)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Sep 1, 2023
1 parent 642ea56 commit 9a940b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/apps-config/src/endpoints/productionRelayPolkadot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ export const prodParasPolkadot: Omit<EndpointOption, 'teleport'>[] = [
providers: {
Darwinia: 'wss://rpc.darwinia.network',
'Darwinia Community': 'wss://darwinia-rpc.darwiniacommunitydao.xyz',
Dwellir: 'wss://darwinia-rpc.dwellir.com',
OnFinality: 'wss://darwinia2.api.onfinality.io/public-ws'
Dwellir: 'wss://darwinia-rpc.dwellir.com'
// OnFinality: 'wss://darwinia2.api.onfinality.io/public-ws' // https://github.com/polkadot-js/apps/issues/9838
},
text: 'Darwinia2',
ui: {
Expand Down
3 changes: 3 additions & 0 deletions packages/page-runtime/src/Runtime/Results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ function Results ({ results }: Props): React.ReactElement<Props> | null {
return null;
}

// DEEBUG
// console.error(results[results.length - 1].result?.toHex());

return (
<section className='runtime--Results'>
{results.map(({ def: { method, section, type }, error, id, result }): React.ReactNode => (
Expand Down

0 comments on commit 9a940b2

Please sign in to comment.