Use null instead of empty string for txId

This commit is contained in:
Manfred Karrer 2019-03-31 15:47:21 -05:00
parent e624625bbb
commit 122bc80cdd
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
7 changed files with 7 additions and 7 deletions

View File

@ -55,7 +55,7 @@ public final class ChangeParamProposal extends Proposal implements ImmutableDaoS
paramValue,
Version.PROPOSAL,
new Date().getTime(),
"",
null,
extraDataMap);
}

View File

@ -62,7 +62,7 @@ public final class CompensationProposal extends Proposal implements IssuanceProp
requestedBsq.value,
Version.COMPENSATION_REQUEST,
new Date().getTime(),
"",
null,
extraDataMap);
}

View File

@ -53,7 +53,7 @@ public final class ConfiscateBondProposal extends Proposal implements ImmutableD
lockupTxId,
Version.PROPOSAL,
new Date().getTime(),
"",
null,
extraDataMap);
}

View File

@ -50,7 +50,7 @@ public final class GenericProposal extends Proposal implements ImmutableDaoState
link,
Version.PROPOSAL,
new Date().getTime(),
"",
null,
extraDataMap);
}

View File

@ -62,7 +62,7 @@ public final class ReimbursementProposal extends Proposal implements IssuancePro
requestedBsq.value,
Version.REIMBURSEMENT_REQUEST,
new Date().getTime(),
"",
null,
extraDataMap);
}

View File

@ -53,7 +53,7 @@ public final class RemoveAssetProposal extends Proposal implements ImmutableDaoS
tickerSymbol,
Version.PROPOSAL,
new Date().getTime(),
"",
null,
extraDataMap);
}

View File

@ -54,7 +54,7 @@ public final class RoleProposal extends Proposal implements ImmutableDaoStateMod
role.getBondedRoleType().getUnlockTimeInBlocks(),
Version.PROPOSAL,
new Date().getTime(),
"",
null,
extraDataMap);
}