pull buffered blockstore into the lib folder
This commit is contained in:
parent
03227e1e27
commit
e8d54839da
@ -6,6 +6,7 @@ import (
|
|||||||
"math/big"
|
"math/big"
|
||||||
|
|
||||||
"github.com/filecoin-project/go-lotus/chain/address"
|
"github.com/filecoin-project/go-lotus/chain/address"
|
||||||
|
"github.com/filecoin-project/go-lotus/lib/bufbstore"
|
||||||
|
|
||||||
bserv "github.com/ipfs/go-blockservice"
|
bserv "github.com/ipfs/go-blockservice"
|
||||||
cid "github.com/ipfs/go-cid"
|
cid "github.com/ipfs/go-cid"
|
||||||
@ -64,13 +65,13 @@ type VM struct {
|
|||||||
cstate *StateTree
|
cstate *StateTree
|
||||||
base cid.Cid
|
base cid.Cid
|
||||||
cs *ChainStore
|
cs *ChainStore
|
||||||
buf *BufferedBS
|
buf *bufbstore.BufferedBS
|
||||||
blockHeight uint64
|
blockHeight uint64
|
||||||
blockMiner address.Address
|
blockMiner address.Address
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewVM(base cid.Cid, height uint64, maddr address.Address, cs *ChainStore) (*VM, error) {
|
func NewVM(base cid.Cid, height uint64, maddr address.Address, cs *ChainStore) (*VM, error) {
|
||||||
buf := NewBufferedBstore(cs.bs)
|
buf := bufbstore.NewBufferedBstore(cs.bs)
|
||||||
cst := hamt.CSTFromBstore(buf)
|
cst := hamt.CSTFromBstore(buf)
|
||||||
state, err := LoadStateTree(cst, base)
|
state, err := LoadStateTree(cst, base)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -166,7 +167,7 @@ func (vm *VM) ApplyMessage(msg *Message) (*MessageReceipt, error) {
|
|||||||
|
|
||||||
func (vm *VM) Flush(ctx context.Context) (cid.Cid, error) {
|
func (vm *VM) Flush(ctx context.Context) (cid.Cid, error) {
|
||||||
from := dag.NewDAGService(bserv.New(vm.buf, nil))
|
from := dag.NewDAGService(bserv.New(vm.buf, nil))
|
||||||
to := dag.NewDAGService(bserv.New(vm.buf.read, nil))
|
to := dag.NewDAGService(bserv.New(vm.buf.Read(), nil))
|
||||||
|
|
||||||
root, err := vm.cstate.Flush()
|
root, err := vm.cstate.Flush()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package chain
|
package bufbstore
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
@ -115,3 +115,7 @@ func (bs *BufferedBS) HashOnRead(hor bool) {
|
|||||||
func (bs *BufferedBS) PutMany(blks []block.Block) error {
|
func (bs *BufferedBS) PutMany(blks []block.Block) error {
|
||||||
return bs.write.PutMany(blks)
|
return bs.write.PutMany(blks)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (bs *BufferedBS) Read() bstore.Blockstore {
|
||||||
|
return bs.read
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user