Skip to content
Snippets Groups Projects
IWallet.java 321 B
Newer Older
Michael Kmoch's avatar
Michael Kmoch committed
package fucoin;
import java.util.Vector;

import fucoin.gui.IWalletControle;


public interface IWallet extends IWalletControle{
Michael Kmoch's avatar
Michael Kmoch committed
	//Vector<WalletPointer> join();
Michael Kmoch's avatar
Michael Kmoch committed
	void storeOrUpdate(Wallet w);
	void invalidateWallet(Wallet w);
	void receiveTransaction(int amount);
Michael Kmoch's avatar
Michael Kmoch committed
	//Vector<WalletPointer> searchWallet(String adress);
Michael Kmoch's avatar
Michael Kmoch committed
}