fix(service-party-app): 修改默认阈值为 3-of-5

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-28 07:50:15 -08:00
parent 47328c67d7
commit 7cfaacc833
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ export default function Create() {
const navigate = useNavigate();
const [walletName, setWalletName] = useState('');
const [thresholdT, setThresholdT] = useState(2);
const [thresholdN, setThresholdN] = useState(3);
const [thresholdT, setThresholdT] = useState(3);
const [thresholdN, setThresholdN] = useState(5);
const [participantName, setParticipantName] = useState('');
const [isLoading, setIsLoading] = useState(false);
const [error, setError] = useState<string | null>(null);