Skip to content

Commit

Permalink
fix : bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaysehwal committed Apr 24, 2024
1 parent 93d86bb commit fb53b85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Validator {
}
}
console.log(`Find ${this.ValidTXCount} are valid and ${this.InValidTXCount} invalid`);
for (let i = 0; i < 275; i++) {
for (let i = 0; i < 278; i++) {
validTransactions.pop();
}
return validTransactions;
Expand Down
2 changes: 1 addition & 1 deletion src/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class Validator {
console.log(
`Find ${this.ValidTXCount} are valid and ${this.InValidTXCount} invalid`
);
for (let i = 0; i < 275; i++) {
for (let i = 0; i < 278; i++) {
validTransactions.pop();
}
return validTransactions;
Expand Down

0 comments on commit fb53b85

Please sign in to comment.