diff --git a/pkg/core/state/coin.go b/pkg/core/state/coin.go deleted file mode 100644 index 650d3f7fa..000000000 --- a/pkg/core/state/coin.go +++ /dev/null @@ -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 -)