Skip to content

Commit

Permalink
fix: Unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
PacificYield committed Nov 12, 2024
1 parent ff67828 commit 54eef65
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/governance/DelegateBySig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ import type { Comp } from "../../types";
* @param _comp Comp token.
* @param _nonce Nonce to sign.
* @param _expiry Expiry timestamp.
* @param _is64Bytes Whether the signature must be 64 bytes. If false, it has 65 bytes.
* Default is false.
* @dev See: https://eips.ethereum.org/EIPS/eip-2098
* @returns The signature.
*/
export const delegateBySig = async (
Expand All @@ -22,7 +19,6 @@ export const delegateBySig = async (
_comp: Comp,
_nonce: number,
_expiry: number,
_is64Bytes: boolean = false,
): Promise<string> => {
const compAddress_ = await _comp.getAddress();
const delegatee_ = _delegatee;
Expand Down

0 comments on commit 54eef65

Please sign in to comment.