Skip to content

Commit

Permalink
increase cu limit for claim to 12000
Browse files Browse the repository at this point in the history
  • Loading branch information
miralandlabs committed Jul 30, 2024
1 parent 1fa0830 commit 03a1eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gateway/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ pub const API_URL: &str = "https://ore-v2-api-lthm.onrender.com"; // MI: dummy
// royal: ore-app-classic ironforge RPC Endpoint
pub const RPC_URL: &str = "https://rpc.ironforge.network/mainnet?apiKey=01J3ZM0ECN63VB741S74YPCFWS";

pub const CU_LIMIT_CLAIM: u32 = 11_000;
pub const CU_LIMIT_STAKE: u32 = 11_000; // MI added
pub const CU_LIMIT_CLAIM: u32 = 12_000;
pub const CU_LIMIT_STAKE: u32 = 12_000; // MI added
pub const CU_LIMIT_MINE: u32 = 500_000;

const RPC_RETRIES: usize = 0;
Expand Down

0 comments on commit 03a1eec

Please sign in to comment.