Skip to content

Commit

Permalink
Merge branch 'bugfix-healthcheck-type' into 'dev'
Browse files Browse the repository at this point in the history
Type mismatch bug fixed

Closes #169

See merge request ergo/rosen-bridge/watcher!161
  • Loading branch information
vorujack committed Oct 21, 2023
2 parents b4bd5d6 + e1541b6 commit 968c199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/watcher/src/jobs/healthCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const updatePermitCheckThreshold = async (boxes: Boxes) => {
logger.warn('incorrect repo box format, repo R6 register is undefined.');
return;
}
const commitmentRwt = R6.to_i64_str_array()[0];
const commitmentRwt = BigInt(R6.to_i64_str_array()[0]);
if (
HealthCheckSingleton.getInstance().checkIfPermitCheckExists(commitmentRwt)
) {
Expand Down

0 comments on commit 968c199

Please sign in to comment.