I noticed that in EstimateFeeRespons the fee_rate field is f64 , the fee rate is but in SendBtcRequest and all other models using this field is u64.
Also in the openapi.yaml, their type is number , where in the exact struct (SendBtcRequest), the amount is also u64 and it's type in the openapi is integer instead of number.
Is this expected?If not I'll open a PR resolving them with your comments.
This cause trouble when using openapi code generator.
I noticed that in
EstimateFeeResponsthe fee_rate field is f64 , the fee rate is but inSendBtcRequestand all other models using this field is u64.Also in the openapi.yaml, their type is number , where in the exact struct (
SendBtcRequest), the amount is also u64 and it's type in the openapi is integer instead of number.Is this expected?If not I'll open a PR resolving them with your comments.
This cause trouble when using openapi code generator.