Skip to content

Commit

Permalink
Remove unused import and update RPC URL
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Mar 28, 2024
1 parent 6b4bc43 commit 2ca3b16
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/service/Services.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Deployment, Service, ServiceHash, ServiceTemplate } from '@/client';
import { isDev } from '@/common-util';
import { BACKEND_URL } from '@/constants';

/**
Expand Down Expand Up @@ -43,7 +42,7 @@ const createService = async ({
deploy,
configuration: {
...serviceTemplate.configuration,
rpc: isDev ? 'http://localhost:8545' : 'https://gnosis-pokt.nodies.app',
rpc: 'http://localhost:8545',
},
}),
headers: {
Expand Down

0 comments on commit 2ca3b16

Please sign in to comment.