Skip to content

Commit

Permalink
fix issue with forcing callback_amount to wrong divisibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jdogresorg committed May 20, 2024
1 parent c895d78 commit 2e8a361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/includes/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ function createToken( $data=null ){
$max_mint = bcmul($max_mint,1,$decimals);
$mint_supply = bcmul($mint_supply,1,$decimals);
$mint_address_max = bcmul($mint_address_max,1,$decimals);
$callback_amount = bcmul($callback_amount,1,$decimals);
// $callback_amount = bcmul($callback_amount,1,$decimals);
}
$supply = $mysqli->real_escape_string($supply);
$max_supply = $mysqli->real_escape_string($max_supply);
Expand Down

0 comments on commit 2e8a361

Please sign in to comment.