From 81d5a5dabdf393cd6ee52579c0ccf43aa167fdc2 Mon Sep 17 00:00:00 2001 From: Lu Jincheng Date: Fri, 5 Dec 2025 07:44:32 +0800 Subject: [PATCH] fixed case issue --- app/Components/Contracts/Connections.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Components/Contracts/Connections.tsx b/app/Components/Contracts/Connections.tsx index 7ef175c..9df4c1a 100644 --- a/app/Components/Contracts/Connections.tsx +++ b/app/Components/Contracts/Connections.tsx @@ -1,7 +1,7 @@ import { Web3 } from 'web3'; import type { Node, NodeInfo, PaymentChannelInfo } from '../Util'; import clearNetJson from './ClearNet/ClearNet.json'; -import clrTokenJson from './CLRTOKEN/CLRToken.json'; +import clrTokenJson from './CLRToken/CLRToken.json'; const clearNetABI = (clearNetJson as any).abi ?? clearNetJson; const clrTokenABI = (clrTokenJson as any).abi ?? clrTokenJson;