fix(v2-cosmos-provider): set RPC result on caught error

This commit is contained in:
Ben Kremer 2022-03-01 14:13:14 +00:00
parent 2e0ead7011
commit 44b2cac9f3

View File

@ -22,9 +22,9 @@ import {
import { useWalletConnectClient } from "./contexts/ClientContext";
interface IFormattedRpcResponse {
method: string;
address: string;
valid: boolean;
method?: string;
address?: string;
valid?: boolean;
result: string;
}
@ -179,6 +179,7 @@ export default function App() {
setRpcResult(result);
} catch (error) {
console.error("RPC request failed:", error);
setRpcResult({ result: error as string });
} finally {
setIsRpcRequestPending(false);
}