Remove console log

This commit is contained in:
abefernan
2024-02-08 11:52:37 +01:00
parent 5079a1b870
commit 73902f6dec
-1
View File
@@ -97,7 +97,6 @@ export const ChainsProvider = ({ children }: ChainsProviderProps) => {
if (state.validatorState.status === "loading" && state.chain.nodeAddress) {
try {
const validators = await getAllValidators(state.chain.nodeAddress);
console.log({ validators });
dispatch({ type: "setValidatorState", payload: { validators, status: "done" } });
} catch (e) {
console.error(e instanceof Error ? e.message : "Failed to load validators");