String msg = Coin.valueOf(pledge.getTotalInputValue()).toFriendlyString();
if (LHUtils.hashFromPledge(pledge).equals(myPledgeHash))
msg += " (yours)";
status.setText(msg);
email.setText(pledge.getPledgeDetails().getContactAddress());
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm");
LocalDateTime time = LocalDateTime.ofEpochSecond(pledge.getTimestamp(), 0, ZoneOffset.UTC);
date.setText(time.format(formatter));
memoSnippet.setText(pledge.getPledgeDetails().getMemo());
}