2023-08-23 15:36:21 +09:00

16 lines
310 B
Go

package server
import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi"
type walletUTXO struct {
Outpoint *externalapi.DomainOutpoint
UTXOEntry externalapi.UTXOEntry
address *walletAddress
}
type walletAddress struct {
index uint32
cosignerIndex uint32
keyChain uint8
}