fix(payouts): persist status updates in payouts table (#4280)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Kashif
2024-04-04 19:13:24 +05:30
committed by GitHub
parent 622aac3015
commit 02ffe7e480
11 changed files with 232 additions and 61 deletions

View File

@ -67,7 +67,7 @@ impl PayoutsInterface for MockDb {
_merchant_id: &str,
_filters: &data_models::payouts::PayoutFetchConstraints,
_storage_scheme: storage_enums::MerchantStorageScheme,
) -> CustomResult<Vec<(Payouts, PayoutAttempt)>, StorageError> {
) -> CustomResult<Vec<(Payouts, PayoutAttempt, diesel_models::Customer)>, StorageError> {
// TODO: Implement function for `MockDb`
Err(StorageError::MockDbError)?
}