micw/server/core/entities.go

16 lines
299 B
Go
Raw Normal View History

2024-11-13 21:10:13 +00:00
package core
import "time"
type NewTransactionOpts struct {
Hash []byte
BlockId int64
SenderPublicKey []byte
ReceiverPublicKey []byte
IsReward bool
Amount float64
Message string
Signature []byte
CreatedAt time.Time
}