mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-16 11:06:40 +00:00
16 lines
366 B
Go
16 lines
366 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/daglabs/btcd/apiserver/apimodels"
|
|
)
|
|
|
|
// GetFeeEstimatesHandler returns the fee estimates for different priorities
|
|
// for accepting a transaction in the DAG.
|
|
func GetFeeEstimatesHandler() (interface{}, error) {
|
|
return &apimodels.FeeEstimateResponse{
|
|
HighPriority: 3,
|
|
NormalPriority: 2,
|
|
LowPriority: 1,
|
|
}, nil
|
|
}
|