state: drop unused UTXO remnant

This commit is contained in:
Roman Khimov 2020-12-14 15:21:23 +03:00
parent 2e0fe370cf
commit 7ba1b16854

View file

@ -1,12 +0,0 @@
package state
// Coin represents the state of a coin.
type Coin uint8
// Viable Coin constants.
const (
CoinConfirmed Coin = 0
CoinSpent Coin = 1 << 1
CoinClaimed Coin = 1 << 2
CoinFrozen Coin = 1 << 5
)