for(int i=0; i<localObjectsCount; i++)
if((i % nodes)== id)
try {
Logger.debug("Created:" + id + "-" + i);
//new BankAccount(id + "-" + i).deposit(10000);
BankAccount temp = new BankAccount(id + "-" + i);
temp.deposit(10000);
} catch (Throwable e) {
e.printStackTrace();
}
}