mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-22 23:07:04 +00:00
16 lines
307 B
Go
16 lines
307 B
Go
package server
|
|
|
|
import "github.com/fabbez/topiad/domain/consensus/model/externalapi"
|
|
|
|
type walletUTXO struct {
|
|
Outpoint *externalapi.DomainOutpoint
|
|
UTXOEntry externalapi.UTXOEntry
|
|
address *walletAddress
|
|
}
|
|
|
|
type walletAddress struct {
|
|
index uint32
|
|
cosignerIndex uint32
|
|
keyChain uint8
|
|
}
|