Merge pull request #727 from chaotixkilla/feat-btc-transaction-batching
BTC transaction batching
This commit is contained in:
commit
cc8c48ff4c
19 changed files with 331 additions and 28 deletions
|
|
@ -110,6 +110,8 @@ const GET_TRANSACTIONS = gql`
|
|||
discount
|
||||
customerId
|
||||
isAnonymous
|
||||
batched
|
||||
batchTime
|
||||
}
|
||||
}
|
||||
`
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue