Skip to content

Commit

Permalink
Fix db issue
Browse files Browse the repository at this point in the history
  • Loading branch information
brucexu-eth committed Jan 17, 2025
1 parent b4ccb50 commit d6a4341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class AppService {
numbers.forEach((item) => {
if (Number(item) < 10000) {
// eip number don't overt 10000
eips.push(`eip LIKE '%${item}%'`);
eips.push(`eip::text LIKE '%${item}%'`);
}
});
if (eips.length === 1) {
Expand Down

0 comments on commit d6a4341

Please sign in to comment.