mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-07 06:02:33 -04:00
Collapse TODO comments onto single line
This commit is contained in:
parent
fcd9966978
commit
3fcc56f849
2 changed files with 6 additions and 12 deletions
|
@ -42,33 +42,28 @@ public class BlockChainFacade {
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean findAddressInBlockChain(String address) {
|
private boolean findAddressInBlockChain(String address) {
|
||||||
// TODO
|
// TODO lookup for address in blockchain
|
||||||
// lookup for address in blockchain
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private byte[] getDataForTxWithAddress(String address) {
|
private byte[] getDataForTxWithAddress(String address) {
|
||||||
// TODO
|
// TODO return data after OP_RETURN
|
||||||
// return data after OP_RETURN
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isFeePayed(String address) {
|
private boolean isFeePayed(String address) {
|
||||||
// TODO
|
// TODO check if fee is paid
|
||||||
// check if fee is payed
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isAccountIDBlacklisted(String accountID) {
|
private boolean isAccountIDBlacklisted(String accountID) {
|
||||||
// TODO
|
// TODO check if accountID is on blacklist
|
||||||
// check if accountID is on blacklist
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isBankAccountBlacklisted(BankAccount bankAccount) {
|
private boolean isBankAccountBlacklisted(BankAccount bankAccount) {
|
||||||
// TODO
|
// TODO check if accountID is on blacklist
|
||||||
// check if accountID is on blacklist
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -162,8 +162,7 @@ public class SettingsController extends CachedViewController {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ViewController loadViewAndGetChildController(NavigationItem navigationItem) {
|
public ViewController loadViewAndGetChildController(NavigationItem navigationItem) {
|
||||||
// TODO
|
// TODO caching causes exception
|
||||||
// caching causes exception
|
|
||||||
final GuiceFXMLLoader loader = new GuiceFXMLLoader(getClass().getResource(navigationItem.getFxmlUrl()), false);
|
final GuiceFXMLLoader loader = new GuiceFXMLLoader(getClass().getResource(navigationItem.getFxmlUrl()), false);
|
||||||
try {
|
try {
|
||||||
final Node view = loader.load();
|
final Node view = loader.load();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue