nervosnetwork / ckb-sdk-go

MIT License
21 stars 23 forks source link

Supporting nil target in GetFeeRateStatics #186

Closed code-monad closed 1 year ago

code-monad commented 1 year ago

change

GetFeeRateStatics(ctx context.Context, target uint64) (*types.FeeRateStatics, error)

into

GetFeeRateStatics(ctx context.Context, target interface{}) (*types.FeeRateStatics, error)

Which allows a nil target parameter

close #185