Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var UndefDBCid = DBCid{}
Functions ¶
This section is empty.
Types ¶
type Int ¶
func SafeFromGo ¶
func (*Int) Scan ¶
Scan assigns a value from a database driver. An error should be returned if the value cannot be stored without loss of information.
Reference types such as []byte are only valid until the next call to Scan and should not be retained. Their underlying memory is owned by the driver. If retention is necessary, copy their values before the next call to Scan.
type MsgMeta ¶
type MsgMeta struct { ExpireEpoch abi.ChainEpoch `gorm:"column:expire_epoch;type:bigint;NOT NULL"` GasOverEstimation float64 `gorm:"column:gas_over_estimation;type:decimal(10,2)"` // todo set GasOverEstimation not null after https://github.com/go-gorm/sqlite/issues/121 // GasOverEstimation float64 `gorm:"column:gas_over_estimation;type:decimal(10,2);NOT NULL"` MaxFee Int `gorm:"column:max_fee;type:varchar(256);default:0"` GasOverPremium float64 `gorm:"column:gas_over_premium;type:decimal(10,2);"` }
Click to show internal directories.
Click to hide internal directories.