fix: remove unnecessary coin usage

This commit is contained in:
thecockatiel 2025-02-12 08:00:25 +03:30
parent 631d0f9222
commit bb6512a6b4
No known key found for this signature in database
GPG key ID: 3E5CDC091FAF3BBA

View file

@ -21,8 +21,6 @@ import bisq.core.dao.burningman.BurningManPresentationService;
import bisq.common.proto.network.NetworkPayload;
import org.bitcoinj.core.Coin;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
@ -70,7 +68,7 @@ public final class AccountingTxOutput implements NetworkPayload {
@Override
public protobuf.AccountingTxOutput toProtoMessage() {
checkArgument(value < Coin.valueOf(2147483647).getValue(),
checkArgument(value < 2147483647,
"We only support integer value in protobuf storage for the amount and it need to be below 21.47483647 BTC");
return protobuf.AccountingTxOutput.newBuilder()
.setValue((int) value)