Updated on 2026-08-14
This commit is contained in:
parent
dae8c94c48
commit
e7c57f1e11
10 changed files with 530 additions and 337 deletions
|
|
@ -265,11 +265,19 @@ public abstract class CoinEngine {
|
|||
|
||||
}
|
||||
|
||||
|
||||
public interface BlockchainRequestsNotifications
|
||||
public interface BalanceAndUnspentTransactionsNotifications
|
||||
{
|
||||
void onComplete(Boolean success);
|
||||
boolean needTerminate();
|
||||
}
|
||||
public abstract void requestBalanceAndUnspentTransactions(BlockchainRequestsNotifications blockchainRequestsNotifications) throws Exception;
|
||||
public abstract void requestBalanceAndUnspentTransactions(BalanceAndUnspentTransactionsNotifications balanceAndUnspentTransactionsNotifications) throws Exception;
|
||||
|
||||
|
||||
public interface FeeRequestsNotifications
|
||||
{
|
||||
void onComplete(boolean success, Amount minFee, Amount normalFee, Amount maxFee);
|
||||
boolean needTerminate();
|
||||
}
|
||||
public abstract void requestFee(FeeRequestsNotifications feeRequestsNotifications, CoinEngine.Amount amount) throws Exception;
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue