2020-07-20 17:48:30 +00:00
|
|
|
package full
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-07-22 15:46:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/messagepool"
|
2020-07-20 17:48:30 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/stmgr"
|
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/runtime/exitcode"
|
|
|
|
"go.uber.org/fx"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GasAPI struct {
|
|
|
|
fx.In
|
|
|
|
Stmgr *stmgr.StateManager
|
|
|
|
Cs *store.ChainStore
|
2020-07-22 15:46:13 +00:00
|
|
|
Mpool *messagepool.MessagePool
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const MinGasPrice = 1
|
|
|
|
|
|
|
|
func (a *GasAPI) GasEstimateGasPrice(ctx context.Context, nblocksincl uint64,
|
|
|
|
sender address.Address, gaslimit int64, tsk types.TipSetKey) (types.BigInt, error) {
|
|
|
|
|
|
|
|
// TODO: something smarter obviously
|
|
|
|
switch nblocksincl {
|
|
|
|
case 0:
|
|
|
|
return types.NewInt(MinGasPrice + 2), nil
|
|
|
|
case 1:
|
|
|
|
return types.NewInt(MinGasPrice + 1), nil
|
|
|
|
default:
|
|
|
|
return types.NewInt(MinGasPrice), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 15:46:13 +00:00
|
|
|
func (a *GasAPI) GasEstimateGasLimit(ctx context.Context, msgIn *types.Message, _ types.TipSetKey) (int64, error) {
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-07-20 19:41:05 +00:00
|
|
|
msg := *msgIn
|
2020-07-20 17:48:30 +00:00
|
|
|
msg.GasLimit = build.BlockGasLimit
|
2020-07-20 18:33:15 +00:00
|
|
|
msg.GasPrice = types.NewInt(1)
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-07-22 15:46:13 +00:00
|
|
|
currTs := a.Cs.GetHeaviestTipSet()
|
|
|
|
fromA, err := a.Stmgr.ResolveToKeyAddress(ctx, msgIn.From, currTs)
|
2020-07-20 17:48:30 +00:00
|
|
|
if err != nil {
|
2020-07-22 15:46:13 +00:00
|
|
|
return -1, xerrors.Errorf("getting key address: %w", err)
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 15:46:13 +00:00
|
|
|
pending, ts := a.Mpool.PendingFor(fromA)
|
|
|
|
priorMsgs := make([]types.ChainMsg, 0, len(pending))
|
|
|
|
for _, m := range pending {
|
|
|
|
priorMsgs = append(priorMsgs, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := a.Stmgr.CallWithGas(ctx, &msg, priorMsgs, ts)
|
2020-07-20 18:33:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return -1, xerrors.Errorf("CallWithGas failed: %w", err)
|
|
|
|
}
|
2020-07-20 17:48:30 +00:00
|
|
|
if res.MsgRct.ExitCode != exitcode.Ok {
|
2020-07-20 18:33:15 +00:00
|
|
|
return -1, xerrors.Errorf("message execution failed: exit %s, reason: %s", res.MsgRct.ExitCode, res.Error)
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.MsgRct.GasUsed, nil
|
|
|
|
}
|