28 lines
755 B
Go
28 lines
755 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"github.com/filecoin-project/go-address"
|
||
|
"github.com/filecoin-project/go-state-types/crypto"
|
||
|
"github.com/filecoin-project/lotus/chain/types"
|
||
|
"github.com/ipfs/go-cid"
|
||
|
)
|
||
|
|
||
|
var dummyCid cid.Cid
|
||
|
|
||
|
func init() {
|
||
|
dummyCid, _ = cid.Parse("bafkqaaa")
|
||
|
}
|
||
|
|
||
|
func MockTipset(minerAddr address.Address, timestamp uint64) (*types.TipSet, error) {
|
||
|
return types.NewTipSet([]*types.BlockHeader{{
|
||
|
Miner: minerAddr,
|
||
|
Height: 5,
|
||
|
ParentStateRoot: dummyCid,
|
||
|
Messages: dummyCid,
|
||
|
ParentMessageReceipts: dummyCid,
|
||
|
BlockSig: &crypto.Signature{Type: crypto.SigTypeBLS},
|
||
|
BLSAggregate: &crypto.Signature{Type: crypto.SigTypeBLS},
|
||
|
Timestamp: timestamp,
|
||
|
}})
|
||
|
}
|