Skip to content

Commit

Permalink
Update default RPC URL during development
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 15, 2024
1 parent b64800e commit d0c20b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/Spawn/SpawnRPC/SpawnRPC.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const SpawnRPC = ({
const { createService } = useServices();
const { checkRPC } = useEthers();

const [rpc, setRpc] = useState("http://localhost:8545"); // default to hardhat node
const [rpc, setRpc] = useState("http://localhost:8545"); // default to hardhat node during development
const [continueIsLoading, setContinueIsLoading] = useState(false);
const [rpcState, setRpcState] = useState<RPCState>(RPCState.INVALID);

Expand Down

0 comments on commit d0c20b9

Please sign in to comment.