fix bug with bank account

This commit is contained in:
Manfred Karrer 2014-08-21 18:32:19 +02:00
parent 0905fbd6b4
commit 9d0d81a7b8
3 changed files with 2 additions and 3 deletions

View file

@ -33,7 +33,7 @@ public class BitSquare extends Application
{ {
private static final Logger log = LoggerFactory.getLogger(BitSquare.class); private static final Logger log = LoggerFactory.getLogger(BitSquare.class);
public static boolean fillFormsWithDummyData = true; public static boolean fillFormsWithDummyData = false;
private static String APP_NAME = "bitsquare"; private static String APP_NAME = "bitsquare";
private static Stage primaryStage; private static Stage primaryStage;

View file

@ -40,7 +40,6 @@ public class GuiceFXMLLoader
{ {
this.url = url; this.url = url;
// useCaching = false;
isCached = useCaching && cachedGUIItems.containsKey(url); isCached = useCaching && cachedGUIItems.containsKey(url);
if (!isCached) if (!isCached)
{ {

View file

@ -125,7 +125,7 @@ public class ProtocolForTakerAsSeller
peersMessagePublicKey = offer.getMessagePublicKey(); peersMessagePublicKey = offer.getMessagePublicKey();
bankAccount = user.getBankAccount(offer.getBankAccountId()); bankAccount = user.getCurrentBankAccount();
accountId = user.getAccountId(); accountId = user.getAccountId();
messagePublicKey = user.getMessagePublicKey(); messagePublicKey = user.getMessagePublicKey();