Skip to content

Commit

Permalink
Change data type to fit
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKim20 committed Apr 4, 2024
1 parent 0418af4 commit 2c22a61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/validator/src/storage/ValidatorStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class ValidatorStorage extends Storage {
blockNumber: BigInt(m.blockNumber),
transactionHash: m.transactionHash,
withdrawStatus: m.withdrawStatus,
withdrawTimestamp: m.withdrawTimestamp,
withdrawTimestamp: BigInt(m.withdrawTimestamp),
};
})
);
Expand Down Expand Up @@ -170,7 +170,7 @@ export class ValidatorStorage extends Storage {
blockNumber: BigInt(m.blockNumber),
transactionHash: m.transactionHash,
withdrawStatus: m.withdrawStatus,
withdrawTimestamp: m.withdrawTimestamp,
withdrawTimestamp: BigInt(m.withdrawTimestamp),
};
})
);
Expand Down Expand Up @@ -205,7 +205,7 @@ export class ValidatorStorage extends Storage {
blockNumber: BigInt(m.blockNumber),
transactionHash: m.transactionHash,
withdrawStatus: m.withdrawStatus,
withdrawTimestamp: m.withdrawTimestamp,
withdrawTimestamp: BigInt(m.withdrawTimestamp),
};
})
);
Expand Down

0 comments on commit 2c22a61

Please sign in to comment.