diff --git a/src/HasWallet.php b/src/HasWallet.php index 5ff8655..f51668c 100644 --- a/src/HasWallet.php +++ b/src/HasWallet.php @@ -84,7 +84,7 @@ public function withdraw($amount, $type = 'withdraw', $meta = [], $shouldAccept $accepted = $shouldAccept ? $this->canWithdraw($amount) : true; if ($accepted) { - $this->wallet->balance += $amount; + $this->wallet->balance -= $amount; $this->wallet->save(); }