Use Byte array instead of hex for pub keys

This commit is contained in:
Manfred Karrer 2015-03-14 19:26:30 +01:00
parent ce3bc26be6
commit 72ded8ad90
43 changed files with 201 additions and 292 deletions

View file

@ -145,7 +145,7 @@ public class PlaceOfferProtocolTest {
() -> {
log.trace("wallet completed");
// 1. Use that address for funding the trading wallet
address = walletService.getAddressInfoByTradeID(OFFER_ID).getAddress();
address = walletService.getAddressInfo(OFFER_ID).getAddress();
log.info("address for funding wallet = " + address.toString());//muoTvFHJmQwPKYoA8Fr7t87UCSfZM4fciG
log.info("Balance = " + walletService.getBalanceForAddress(address));
countDownLatch.countDown();