Skip to content

Commit 1eec44e

Browse files
committed
remove mock allocation.
1 parent 668ee68 commit 1eec44e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

vesting-backend/src/main.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ pub async fn submit_signature(
7575
};
7676
return HttpResponse::Ok().body(serde_json::to_string(&ret).unwrap());
7777
}
78-
let claimant_entity = CsvEntry{
79-
pubkey: post_params.pubkey.clone(),
80-
amount_unlocked: 10000.0,
81-
amount_locked: 10000.0,
82-
category: AirdropCategory::Staker,
83-
};
84-
let claimant_entity = Some(&claimant_entity);
78+
// let claimant_entity = CsvEntry{
79+
// pubkey: post_params.pubkey.clone(),
80+
// amount_unlocked: 10000.0,
81+
// amount_locked: 10000.0,
82+
// category: AirdropCategory::Staker,
83+
// };
84+
// let claimant_entity = Some(&claimant_entity);
8585

8686
let amount_unlocked = ui_amount_to_token_amount(claimant_entity.unwrap().amount_unlocked);
8787
let amount_locked = ui_amount_to_token_amount(claimant_entity.unwrap().amount_locked);

0 commit comments

Comments
 (0)