Skip to content

Commit

Permalink
update mintable with base64 cert support
Browse files Browse the repository at this point in the history
  • Loading branch information
AV committed Jul 23, 2023
1 parent 45fd873 commit 7290d13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion superscraper/scrapers/money/money-scraper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const axios = require('axios');
const fs = require('fs').promises;
const path = require('path');
const { exec } = require('child_process');
const util = require('util');
const db = require('../_utils/db.js');
Expand Down Expand Up @@ -102,7 +103,7 @@ async function main() {

// Initial run
main()
.catch(error => console.error(`An error occurred while running the main function: ${error}`))
.catch(error => console.error(`[${path.basename(__filename)}]: ${error}`))
.finally( () => setTimeout(main, 6 * 60 * 60 * 1000) ); // Run every 6 hours

async function fetchMintable() {
Expand Down

0 comments on commit 7290d13

Please sign in to comment.