Improve wording

This commit is contained in:
Manfred Karrer 2016-04-17 19:32:40 +02:00
parent 822f64b13b
commit 5c3891fbe6
2 changed files with 11 additions and 2 deletions

View File

@ -56,4 +56,13 @@ public final class RawTransactionInput implements Payload {
result = 31 * result + (int) (value ^ (value >>> 32));
return result;
}
@Override
public String toString() {
return "RawTransactionInput{" +
"index=" + index +
", parentTransaction=" + Arrays.toString(parentTransaction) +
", value=" + value +
'}';
}
}

View File

@ -125,8 +125,8 @@ public class AccountView extends ActivatableView<TabPane, AccountViewModel> {
"as well as for crypto currencies.\n\n" +
"Please note that this data is stored locally on your computer only. Bitsquare does not operate servers " +
"and has no access to users data.\n\n" +
"When you are trading with someone you exchange in the trade process with your peer the " +
"required account data for that trade.")
"When you are trading you will exchange in the trade process with your peer the " +
"required account data for that trade (e.g. bank account data or altcoin address).")
.dontShowAgainId(key, preferences)
.show();
}