Skip to content

Commit

Permalink
Fix some formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
af-afk committed Jul 25, 2024
1 parent dc33ee9 commit 40a1a0f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1002,14 +1002,13 @@ export enum AirdropElection {
Claim = 0,
Stake,
ConvertToSpn
};
}

export const signAirdropElection_ = async (
signer: Signer,
option: AirdropElection
): Promise<string> => {
const address = await signer.getAddress();
var optionStr = "";
let optionStr = "";
switch (option) {
case AirdropElection.Claim:
optionStr = "claim";
Expand Down

0 comments on commit 40a1a0f

Please sign in to comment.