mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-28 17:15:14 +01:00
chore: apply requested change
This commit is contained in:
parent
bb6512a6b4
commit
85d401aa47
1 changed files with 2 additions and 2 deletions
|
@ -68,8 +68,8 @@ public final class AccountingTxOutput implements NetworkPayload {
|
|||
|
||||
@Override
|
||||
public protobuf.AccountingTxOutput toProtoMessage() {
|
||||
checkArgument(value < 2147483647,
|
||||
"We only support integer value in protobuf storage for the amount and it need to be below 21.47483647 BTC");
|
||||
checkArgument(value < Integer.MAX_VALUE,
|
||||
"We only support integer values in protobuf storage for the amount.");
|
||||
return protobuf.AccountingTxOutput.newBuilder()
|
||||
.setValue((int) value)
|
||||
.setName(name).build();
|
||||
|
|
Loading…
Add table
Reference in a new issue