Expose GetFeeByType exchange wrapper

This commit is contained in:
Adrian Gallagher
2019-03-27 16:13:05 +11:00
parent fbc9b0aa97
commit b048539f4c
3 changed files with 11 additions and 5 deletions

View File

@@ -180,4 +180,9 @@ func ({{.Variable}} *{{.CapitalName}}) GetOrderHistory(getOrdersRequest *exchang
return nil, common.ErrNotYetImplemented
}
// GetFeeByType returns an estimate of fee based on the type of transaction
func ({{.Variable}} *{{.CapitalName}}) GetFeeByType(feeBuilder *exchange.FeeBuilder) (float64, error) {
return 0, common.ErrNotYetImplemented
}
{{end}}