mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Use null instead of empty string for txId
This commit is contained in:
parent
e624625bbb
commit
122bc80cdd
@ -55,7 +55,7 @@ public final class ChangeParamProposal extends Proposal implements ImmutableDaoS
|
||||
paramValue,
|
||||
Version.PROPOSAL,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ public final class CompensationProposal extends Proposal implements IssuanceProp
|
||||
requestedBsq.value,
|
||||
Version.COMPENSATION_REQUEST,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ public final class ConfiscateBondProposal extends Proposal implements ImmutableD
|
||||
lockupTxId,
|
||||
Version.PROPOSAL,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,7 @@ public final class GenericProposal extends Proposal implements ImmutableDaoState
|
||||
link,
|
||||
Version.PROPOSAL,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ public final class ReimbursementProposal extends Proposal implements IssuancePro
|
||||
requestedBsq.value,
|
||||
Version.REIMBURSEMENT_REQUEST,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ public final class RemoveAssetProposal extends Proposal implements ImmutableDaoS
|
||||
tickerSymbol,
|
||||
Version.PROPOSAL,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ public final class RoleProposal extends Proposal implements ImmutableDaoStateMod
|
||||
role.getBondedRoleType().getUnlockTimeInBlocks(),
|
||||
Version.PROPOSAL,
|
||||
new Date().getTime(),
|
||||
"",
|
||||
null,
|
||||
extraDataMap);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user