mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-22 17:40:04 +01:00
9 lines
128 B
JavaScript
9 lines
128 B
JavaScript
const statuses = Object.freeze({
|
|
nonExistent: 0,
|
|
waitingForReciept: 1,
|
|
success: 2,
|
|
fail: 3,
|
|
})
|
|
|
|
export default statuses
|