mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
Update addMultisigStep2.js
This commit is contained in:
parent
5829290501
commit
5428e10b01
1 changed files with 34 additions and 31 deletions
|
@ -130,8 +130,10 @@ const WalletsAddMultisigStep2 = () => {
|
|||
},
|
||||
});
|
||||
|
||||
const onCreate = async () => {
|
||||
const onCreate = () => {
|
||||
setIsLoading(true);
|
||||
// give it time to show loading indicator
|
||||
setTimeout(async () => {
|
||||
const w = new MultisigHDWallet();
|
||||
w.setM(m);
|
||||
switch (format) {
|
||||
|
@ -164,6 +166,7 @@ const WalletsAddMultisigStep2 = () => {
|
|||
ReactNativeHapticFeedback.trigger('notificationSuccess', { ignoreAndroidSystemSettings: false });
|
||||
|
||||
navigation.dangerouslyGetParent().pop();
|
||||
}, 100);
|
||||
};
|
||||
|
||||
const generateNewKey = () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue