mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
Merge pull request #921 from cypherstack/testing
fix frost send for people who use multisig using a single signer
This commit is contained in:
commit
9e8f9087d4
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ class _FrostSendStep3State extends ConsumerState<FrostSendStep3> {
|
||||||
PrimaryButton(
|
PrimaryButton(
|
||||||
label: "Generate transaction",
|
label: "Generate transaction",
|
||||||
enabled: _userVerifyContinue &&
|
enabled: _userVerifyContinue &&
|
||||||
!fieldIsEmptyFlags.reduce((v, e) => v |= e),
|
!fieldIsEmptyFlags.fold(false, (v, e) => v |= e),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
// collect Share strings
|
// collect Share strings
|
||||||
final sharesCollected = controllers.map((e) => e.text).toList();
|
final sharesCollected = controllers.map((e) => e.text).toList();
|
||||||
|
|
Loading…
Reference in a new issue