Merge pull request #727 from chaotixkilla/feat-btc-transaction-batching

BTC transaction batching
This commit is contained in:
Rafael Taranto 2021-11-24 22:56:09 +00:00 committed by GitHub
commit cc8c48ff4c
19 changed files with 331 additions and 28 deletions

View file

@ -110,6 +110,8 @@ const GET_TRANSACTIONS = gql`
discount
customerId
isAnonymous
batched
batchTime
}
}
`

View file

@ -11,6 +11,7 @@ const getCashInStatus = it => {
if (it.hasError) return 'Error'
if (it.sendConfirmed) return 'Sent'
if (it.expired) return 'Expired'
if (it.batched) return 'Batched'
return 'Pending'
}