-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change update data logic start working with NFC
- Loading branch information
1 parent
1675afe
commit 22a31c1
Showing
16 changed files
with
315 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
app/src/main/java/org/qtum/mromanovsky/qtum/dataprovider/BalanceChangeListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.qtum.mromanovsky.qtum.dataprovider; | ||
|
||
|
||
public interface BalanceChangeListener { | ||
void onChangeBalance(String balance, String unconfirmedBalance); | ||
boolean getVisibility(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...va/org/qtum/mromanovsky/qtum/ui/fragment/SendBaseFragment/SendBaseFragmentInteractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
package org.qtum.mromanovsky.qtum.ui.fragment.SendBaseFragment; | ||
|
||
|
||
import java.util.List; | ||
|
||
interface SendBaseFragmentInteractor { | ||
void getUnspentOutputs(SendBaseFragmentInteractorImpl.GetUnspentListCallBack callBack); | ||
void sendTx(String address, String amount, SendBaseFragmentInteractorImpl.SendTxCallBack callBack); | ||
void createTx(String address, String amount, SendBaseFragmentInteractorImpl.CreateTxCallBack callBack); | ||
int getPassword(); | ||
double getBalance(); | ||
List<String> getAddresses(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.