please I have this code below:
function InitializeWalletPaystack() {
$('#paystack_btn').html("<?php echo($sb['lang']['please_wait']) ?>");
$('#paystack_btn').attr('disabled','true');
email = $('#paystack_wallet_email').val();
amount = $('#amount').val() * 100;
$.post(Sb_Ajax_Requests_File() + '?f=paystack&s=initialize', {type:'wallet',email:email,amount:amount}, function(data)
The problem is that whenever I initiate a deposit of $10, it will return $1000.00
Please help out