mirror of
https://github.com/tornadocash/tornado-classic-ui
synced 2024-02-02 15:04:09 +01:00
9 lines
127 B
JavaScript
9 lines
127 B
JavaScript
const statuses = Object.freeze({
|
|
nonExistent: 0,
|
|
waitingForReciept: 1,
|
|
success: 2,
|
|
fail: 3
|
|
})
|
|
|
|
export default statuses
|