diff --git a/config/canisters/5-the-hierophant.json b/config/canisters/5-the-hierophant.json index 7dc99f2..9414472 100644 --- a/config/canisters/5-the-hierophant.json +++ b/config/canisters/5-the-hierophant.json @@ -1,7 +1,7 @@ { - "name": "Legend 5: The Hierophant", - "supply": 110, - "flavour": "...", - "artists": "vec { \"Colin Arc\"; \"The Saxon Storyteller\"; \"Jorgen Builder\" }", - "description": "Collectible Major Arcana cards celebrating the enduring spirit of tarot, the innervating virtues of web3, and the first deck developed by Saga Tarot." -} \ No newline at end of file + "name": "Legend 5: The Hierophant", + "supply": 110, + "flavour": "...", + "artists": "vec { \"Colin Arc\"; \"The Saxon Storyteller\"; \"Jorgen Builder\" }", + "description": "Collectible Major Arcana cards celebrating the enduring spirit of tarot, the innervating virtues of web3, and the first deck developed by Saga Tarot." +} diff --git a/dfx.json b/dfx.json index 3fe80b0..9dc050c 100644 --- a/dfx.json +++ b/dfx.json @@ -110,4 +110,4 @@ } }, "version": 1 -} \ No newline at end of file +} diff --git a/src/main.mo b/src/main.mo index ba5c16d..0ae5b8c 100644 --- a/src/main.mo +++ b/src/main.mo @@ -193,18 +193,18 @@ shared ({ caller = creator }) actor class LegendsNFT( ////////////// - system func heartbeat() : async () { - if (not s_heartbeatOn) return; + // system func heartbeat() : async () { + // if (not s_heartbeatOn) return; - // Limit heartbeats - let now = Time.now(); - if (now - s_heartbeatLastBeat < s_heartbeatIntervalSeconds * 1_000_000_000) return; - s_heartbeatLastBeat := now; + // // Limit heartbeats + // let now = Time.now(); + // if (now - s_heartbeatLastBeat < s_heartbeatIntervalSeconds * 1_000_000_000) return; + // s_heartbeatLastBeat := now; - // Run jobs - await _Entrepot.cronDisbursements(); - await _Entrepot.cronSettlements(); - }; + // // Run jobs + // await _Entrepot.cronDisbursements(); + // await _Entrepot.cronSettlements(); + // }; public shared ({ caller }) func heartbeatSetInterval ( i : Nat