Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/express/src/typedRoutes/api/v2/sendCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const SendCoinsRequestBody = {
numBlocks: optional(t.number),

/** The desired fee rate for the transaction in base units per kilobyte (e.g., satoshis/kB) */
feeRate: optional(t.number),
feeRate: optional(t.union([t.number, t.string])),

/** Fee multiplier (multiplies the estimated fee by this factor) */
feeMultiplier: optional(t.number),
Expand Down
Loading