mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-13 09:36:44 +00:00
14 lines
361 B
Go
14 lines
361 B
Go
package controllers
|
|
|
|
import "github.com/daglabs/btcd/apiserver/utils"
|
|
|
|
// GetFeeEstimatesHandler returns the fee estimates for different priorities
|
|
// for accepting a transaction in the DAG.
|
|
func GetFeeEstimatesHandler() (interface{}, *utils.HandlerError) {
|
|
return &feeEstimateResponse{
|
|
HighPriority: 3,
|
|
NormalPriority: 2,
|
|
LowPriority: 1,
|
|
}, nil
|
|
}
|