When I use the below code for updating store credit balance to customer, I am getting this error:
Fatal Error: Call to a member function setCustomer() on boolean in
$balance = Mage::getModel('enterprise_customerbalance/balance')
                    ->setCustomer($customer)
                    ->setWebsiteId($websiteId)
                    ->setAmountDelta($anyNumber)
                    ->setComment($data['comment']);
$balance->save();