Skip to content

Commit

Permalink
feat(wallet): Add transaction_status to wallet object
Browse files Browse the repository at this point in the history
  • Loading branch information
rsempe committed Apr 19, 2024
1 parent 743dbc9 commit d1fc2c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/lago/api/resources/wallet_transaction_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'lago_wallet_id' => factory_wallet_transaction.wallet_id,
'amount' => factory_wallet_transaction.paid_credits,
'status' => 'pending',
'transaction_status' => 'paid',
'transaction_type' => 'inbound',
'credit_amount' => factory_wallet_transaction.paid_credits,
'settled_at' => '2022-04-29T08:59:51Z',
Expand All @@ -25,6 +26,7 @@
'lago_wallet_id' => factory_wallet_transaction.wallet_id,
'amount' => factory_wallet_transaction.granted_credits,
'status' => 'settled',
'transaction_status' => 'paid',
'transaction_type' => 'inbound',
'credit_amount' => factory_wallet_transaction.granted_credits,
'settled_at' => '2022-04-29T08:59:51Z',
Expand Down

0 comments on commit d1fc2c2

Please sign in to comment.