crystal-wallet-android/app/src/main/java/cy/agorise/crystalwallet/manager/BitsharesAccountManager.java

34 lines
988 B
Java
Raw Normal View History

package cy.agorise.crystalwallet.manager;
2017-10-02 02:18:56 +00:00
import cy.agorise.crystalwallet.cryptonetinforequests.CryptoNetInfoRequest;
import cy.agorise.crystalwallet.cryptonetinforequests.CryptoNetInfoRequestsListener;
import cy.agorise.crystalwallet.cryptonetinforequests.ValidateImportBitsharesAccountRequest;
import cy.agorise.crystalwallet.models.CryptoNetAccount;
/**
* Created by henry on 26/9/2017.
*/
2017-10-02 02:18:56 +00:00
public class BitsharesAccountManager implements CryptoAccountManager, CryptoNetInfoRequestsListener {
@Override
public CryptoNetAccount createAccountFromSeed(CryptoNetAccount account) {
return null;
}
@Override
public CryptoNetAccount importAccountFromSeed(CryptoNetAccount account) {
return null;
}
@Override
public void loadAccountFromDB(CryptoNetAccount account) {
}
2017-10-02 02:18:56 +00:00
@Override
public void onNewRequest(CryptoNetInfoRequest request) {
if (request instanceof ValidateImportBitsharesAccountRequest){
}
}
}