8 changed files with 72 additions and 2 deletions
@ -1 +1 @@ |
|||
Subproject commit 15beeefcb687c77adddbfe5e2b74c75b2c6f2196 |
|||
Subproject commit 3ce2394813749be99e79f4f0253f2636fab9df91 |
@ -0,0 +1,18 @@ |
|||
package com.sparrowwallet.sparrow.event; |
|||
|
|||
import com.sparrowwallet.drongo.wallet.Keystore; |
|||
|
|||
/** |
|||
* This event is used to indicate the animation for signing a keystore is complete |
|||
*/ |
|||
public class KeystoreSignedEvent { |
|||
private final Keystore keystore; |
|||
|
|||
public KeystoreSignedEvent(Keystore keystore) { |
|||
this.keystore = keystore; |
|||
} |
|||
|
|||
public Keystore getKeystore() { |
|||
return keystore; |
|||
} |
|||
} |
@ -0,0 +1,13 @@ |
|||
package com.sparrowwallet.sparrow.event; |
|||
|
|||
import com.sparrowwallet.drongo.psbt.PSBT; |
|||
|
|||
/** |
|||
* This event is fired once the signing animation has finished and the PSBT has been finalized |
|||
* |
|||
*/ |
|||
public class PSBTFinalizedEvent extends PSBTEvent { |
|||
public PSBTFinalizedEvent(PSBT psbt) { |
|||
super(psbt); |
|||
} |
|||
} |
Loading…
Reference in new issue