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:
parent
47328c67d7
commit
7cfaacc833
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue