26 lines
639 B
Python
26 lines
639 B
Python
from dataclasses import dataclass
|
|
|
|
from chia.types.blockchain_format.coin import Coin
|
|
from chia.types.blockchain_format.sized_bytes import bytes32
|
|
from chia.util.ints import uint32
|
|
from chia.wallet.util.wallet_types import WalletType
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class WalletCoinRecord:
|
|
"""
|
|
These are values that correspond to a CoinName that are used
|
|
in keeping track of the unspent database.
|
|
"""
|
|
|
|
coin: Coin
|
|
confirmed_block_height: uint32
|
|
spent_block_height: uint32
|
|
spent: bool
|
|
coinbase: bool
|
|
wallet_type: WalletType
|
|
wallet_id: int
|
|
|
|
def name(self) -> bytes32:
|
|
return self.coin.name()
|