From 7ba1b168546172c69451ae9b982ba090a8d86c5e Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 14 Dec 2020 15:21:23 +0300 Subject: [PATCH] state: drop unused UTXO remnant --- pkg/core/state/coin.go | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 pkg/core/state/coin.go 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 -)