Skip to content

Commit

Permalink
Add stats for base fee
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
  • Loading branch information
Jakub Sztandera committed Oct 5, 2020
1 parent 0162a48 commit 0d90e3a
Showing 1 changed file with 44 additions and 22 deletions.
66 changes: 44 additions & 22 deletions cli/mpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,6 @@ var mpoolSub = &cli.Command{
},
}

type statBucket struct {
msgs map[uint64]*types.SignedMessage
}
type mpStat struct {
addr string
past, cur, future uint64
}

var mpoolStat = &cli.Command{
Name: "stat",
Usage: "print mempool stats",
Expand All @@ -180,6 +172,11 @@ var mpoolStat = &cli.Command{
Name: "local",
Usage: "print stats for addresses in local wallet only",
},
&cli.IntFlag{
Name: "basefee-lookback",
Usage: "number of blocks to look back for minimum basefee",
Value: 60,
},
},
Action: func(cctx *cli.Context) error {
api, closer, err := GetFullNodeAPI(cctx)
Expand All @@ -194,6 +191,17 @@ var mpoolStat = &cli.Command{
if err != nil {
return xerrors.Errorf("getting chain head: %w", err)
}
currBF := ts.Blocks()[0].ParentBaseFee
minBF := currBF
{
currTs := ts
for i := 0; i < cctx.Int("basefee-lookback"); i++ {
currTs, err = api.ChainGetTipSet(ctx, currTs.Parents())
if newBF := currTs.Blocks()[0].ParentBaseFee; newBF.LessThan(minBF) {
minBF = newBF
}
}
}

var filter map[address.Address]struct{}
if cctx.Bool("local") {
Expand All @@ -214,8 +222,16 @@ var mpoolStat = &cli.Command{
return err
}

buckets := map[address.Address]*statBucket{}
type statBucket struct {
msgs map[uint64]*types.SignedMessage
}
type mpStat struct {
addr string
past, cur, future uint64
belowCurr, belowPast uint64
}

buckets := map[address.Address]*statBucket{}
for _, v := range msgs {
if filter != nil {
if _, has := filter[v.Message.From]; !has {
Expand Down Expand Up @@ -252,23 +268,27 @@ var mpoolStat = &cli.Command{
cur++
}

past := uint64(0)
future := uint64(0)
var s mpStat
s.addr = a.String()

for _, m := range bkt.msgs {
if m.Message.Nonce < act.Nonce {
past++
s.past++
} else if m.Message.Nonce > cur {
s.future++
} else {
s.cur++
}

if m.Message.GasFeeCap.LessThan(currBF) {
s.belowCurr++
}
if m.Message.Nonce > cur {
future++
if m.Message.GasFeeCap.LessThan(minBF) {
s.belowPast++
}
}

out = append(out, mpStat{
addr: a.String(),
past: past,
cur: cur - act.Nonce,
future: future,
})
out = append(out, s)
}

sort.Slice(out, func(i, j int) bool {
Expand All @@ -281,12 +301,14 @@ var mpoolStat = &cli.Command{
total.past += stat.past
total.cur += stat.cur
total.future += stat.future
total.belowCurr += stat.belowCurr
total.belowPast += stat.belowPast

fmt.Printf("%s: past: %d, cur: %d, future: %d\n", stat.addr, stat.past, stat.cur, stat.future)
fmt.Printf("%s: Nonce past: %d, cur: %d, future: %d; FeeCap cur: %d, min-%d: %d \n", stat.addr, stat.past, stat.cur, stat.future, stat.belowCurr, cctx.Int("basefee-lookback"), stat.belowPast)
}

fmt.Println("-----")
fmt.Printf("total: past: %d, cur: %d, future: %d\n", total.past, total.cur, total.future)
fmt.Printf("total: Nonce past: %d, cur: %d, future: %d; FeeCap cur: %d, min-%d: %d \n", total.past, total.cur, total.future, total.belowCurr, cctx.Int("basefee-lookback"), total.belowPast)

return nil
},
Expand Down

0 comments on commit 0d90e3a

Please sign in to comment.