mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-29 00:57:17 -04:00
Improve wording
This commit is contained in:
parent
822f64b13b
commit
5c3891fbe6
2 changed files with 11 additions and 2 deletions
|
@ -56,4 +56,13 @@ public final class RawTransactionInput implements Payload {
|
||||||
result = 31 * result + (int) (value ^ (value >>> 32));
|
result = 31 * result + (int) (value ^ (value >>> 32));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "RawTransactionInput{" +
|
||||||
|
"index=" + index +
|
||||||
|
", parentTransaction=" + Arrays.toString(parentTransaction) +
|
||||||
|
", value=" + value +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,8 +125,8 @@ public class AccountView extends ActivatableView<TabPane, AccountViewModel> {
|
||||||
"as well as for crypto currencies.\n\n" +
|
"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 " +
|
"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" +
|
"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 " +
|
"When you are trading you will exchange in the trade process with your peer the " +
|
||||||
"required account data for that trade.")
|
"required account data for that trade (e.g. bank account data or altcoin address).")
|
||||||
.dontShowAgainId(key, preferences)
|
.dontShowAgainId(key, preferences)
|
||||||
.show();
|
.show();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue