mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 00:27:00 +00:00
16 lines
303 B
Java
16 lines
303 B
Java
package com.sparrowwallet.sparrow.event;
|
|
|
|
import com.sparrowwallet.drongo.wallet.Wallet;
|
|
|
|
public class WalletUnlockEvent {
|
|
private final Wallet wallet;
|
|
|
|
public WalletUnlockEvent(Wallet wallet) {
|
|
this.wallet = wallet;
|
|
}
|
|
|
|
public Wallet getWallet() {
|
|
return wallet;
|
|
}
|
|
}
|