9746b88bb3
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
132 lines
2.9 KiB
Go
132 lines
2.9 KiB
Go
package chain
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
cid "github.com/ipfs/go-cid"
|
|
hamt "github.com/ipfs/go-hamt-ipld"
|
|
"github.com/pkg/errors"
|
|
sharray "github.com/whyrusleeping/sharray"
|
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
|
bls "github.com/filecoin-project/go-lotus/lib/bls-signatures"
|
|
)
|
|
|
|
func miningRewardForBlock(base *TipSet) types.BigInt {
|
|
return types.NewInt(10000)
|
|
}
|
|
|
|
func MinerCreateBlock(cs *ChainStore, miner address.Address, parents *TipSet, tickets []Ticket, proof ElectionProof, msgs []*SignedMessage) (*FullBlock, error) {
|
|
st, err := cs.TipSetState(parents.Cids())
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to load tipset state")
|
|
}
|
|
|
|
height := parents.Height() + uint64(len(tickets))
|
|
|
|
vm, err := NewVM(st, height, miner, cs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// apply miner reward
|
|
if err := vm.TransferFunds(NetworkAddress, miner, miningRewardForBlock(parents)); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
next := &BlockHeader{
|
|
Miner: miner,
|
|
Parents: parents.Cids(),
|
|
Tickets: tickets,
|
|
Height: height,
|
|
}
|
|
|
|
fmt.Printf("adding %d messages to block...", len(msgs))
|
|
var msgCids []cid.Cid
|
|
var blsSigs []Signature
|
|
var receipts []interface{}
|
|
for _, msg := range msgs {
|
|
if msg.Signature.TypeCode() == 2 {
|
|
blsSigs = append(blsSigs, msg.Signature)
|
|
|
|
blk, err := msg.Message.ToStorageBlock()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := cs.bs.Put(blk); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
msgCids = append(msgCids, blk.Cid())
|
|
} else {
|
|
msgCids = append(msgCids, msg.Cid())
|
|
}
|
|
rec, err := vm.ApplyMessage(&msg.Message)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "apply message failure")
|
|
}
|
|
|
|
receipts = append(receipts, rec)
|
|
}
|
|
|
|
cst := hamt.CSTFromBstore(cs.bs)
|
|
msgroot, err := sharray.Build(context.TODO(), 4, toIfArr(msgCids), cst)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
next.Messages = msgroot
|
|
|
|
rectroot, err := sharray.Build(context.TODO(), 4, receipts, cst)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
next.MessageReceipts = rectroot
|
|
|
|
stateRoot, err := vm.Flush(context.TODO())
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "flushing state tree failed")
|
|
}
|
|
|
|
aggSig, err := aggregateSignatures(blsSigs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
next.BLSAggregate = aggSig
|
|
next.StateRoot = stateRoot
|
|
pweight := cs.Weight(parents)
|
|
next.ParentWeight = types.NewInt(pweight)
|
|
|
|
fullBlock := &FullBlock{
|
|
Header: next,
|
|
Messages: msgs,
|
|
}
|
|
|
|
return fullBlock, nil
|
|
}
|
|
|
|
func aggregateSignatures(sigs []Signature) (Signature, error) {
|
|
var blsSigs []bls.Signature
|
|
for _, s := range sigs {
|
|
var bsig bls.Signature
|
|
copy(bsig[:], s.Data)
|
|
blsSigs = append(blsSigs, bsig)
|
|
}
|
|
|
|
aggSig := bls.Aggregate(blsSigs)
|
|
return Signature{
|
|
Type: KTBLS,
|
|
Data: aggSig[:],
|
|
}, nil
|
|
}
|
|
|
|
func toIfArr(cids []cid.Cid) []interface{} {
|
|
out := make([]interface{}, 0, len(cids))
|
|
for _, c := range cids {
|
|
out = append(out, c)
|
|
}
|
|
return out
|
|
}
|