ghubstan 2021-01-03 12:01:10 -03:00
parent 0638701ca3
commit c2c1ac2087
No known key found for this signature in database
GPG key ID: E35592D6800A861E
3 changed files with 8 additions and 10 deletions

View file

@ -25,7 +25,6 @@ import bisq.common.proto.persistable.PersistablePayload;
import java.util.Objects;
import lombok.Getter;
import lombok.Setter;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
@ -38,7 +37,6 @@ import javax.annotation.concurrent.Immutable;
*/
@Immutable
@Getter
@Setter
public class TxOutput extends BaseTxOutput implements PersistablePayload, ImmutableDaoStateModel {
public static TxOutput fromTempOutput(TempTxOutput tempTxOutput) {
return new TxOutput(tempTxOutput.getIndex(),

View file

@ -21,11 +21,11 @@ package bisq.core.network.p2p.inventory.messages;
import bisq.common.app.Version;
import bisq.common.proto.network.NetworkEnvelope;
import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.Getter;
import lombok.ToString;
@Value
@EqualsAndHashCode(callSuper = false)
@Getter
@ToString
public class GetInventoryRequest extends NetworkEnvelope {
private final String version;

View file

@ -28,11 +28,11 @@ import com.google.common.base.Optional;
import java.util.HashMap;
import java.util.Map;
import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.Getter;
import lombok.ToString;
@Value
@EqualsAndHashCode(callSuper = false)
@Getter
@ToString
public class GetInventoryResponse extends NetworkEnvelope {
private final Map<InventoryItem, String> inventory;