Skip to content

Commit

Permalink
chore: token string renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
naneey committed Sep 12, 2023
1 parent 190912e commit 67f8836
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ private void updateProgressReportResult() {
Address _contributor_address = (Address) _proposal_details.get(CONTRIBUTOR_ADDRESS);
boolean _budget_adjustment = (boolean) _report_result.get(BUDGET_ADJUSTMENT);
BigInteger _sponsor_deposit_amount = (BigInteger) _proposal_details.get(SPONSOR_DEPOSIT_AMOUNT);
String flag = (String) _proposal_details.get("token");
String flag = (String) _proposal_details.get(TOKEN);

// checking which prep(s) did not vote the progress report
checkInactivePreps(ProgressReportDataDb.votersList.at(progressPrefix));
Expand Down Expand Up @@ -1296,7 +1296,7 @@ private void checkProgressReportSubmission() {
String _proposal_status = (String) _proposal_details.get(STATUS);
Address _sponsor_address = (Address) _proposal_details.get(SPONSOR_ADDRESS);
Address _contributor_address = (Address) _proposal_details.get(CONTRIBUTOR_ADDRESS);
String flag = (String) _proposal_details.get("token");
String flag = (String) _proposal_details.get(TOKEN);

if (!ProposalDataDb.submitProgressReport.at(proposalPrefix).getOrDefault(Boolean.FALSE)) {
if (_proposal_status.equals(ACTIVE)) {
Expand Down

0 comments on commit 67f8836

Please sign in to comment.