classic-ui/store/txStatus.js

9 lines
127 B
JavaScript
Raw Normal View History

2022-04-22 06:05:56 +03:00
const statuses = Object.freeze({
nonExistent: 0,
waitingForReciept: 1,
success: 2,
fail: 3
})
export default statuses