You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RPCTimeout time.Duration`long:"rpctimeout" description:"The timeout to use for RPC requests to lnd; a sufficiently long duration should be chosen to avoid issues with slow responses. Valid time units are {s, m, h}."`
281
286
}
282
287
288
+
// WalletConfig is the config that contains wallet related configurations.
289
+
typeWalletConfigstruct {
290
+
// PsbtMaxFeeRatio is the maximum fees to total output amount ratio to
291
+
// use when funding PSBTs for asset transfers. Since taproot assets can
292
+
// be anchored to outpoints that may carry relatively small bitcoin
293
+
// amounts it is useful to pick a high value for this argument as in
294
+
// high fee environments the total fees paid may outweigh the anchor
295
+
// amount. The allowed values for this argument range from 0.00 to 1.00.
296
+
PsbtMaxFeeRatiofloat64`long:"psbt-max-fee-ratio" description:"The maximum fees to total output amount ratio to use when funding PSBTs for asset transfers. Value must be between 0.00 and 1.00"`
297
+
}
298
+
283
299
// UniverseConfig is the config that houses any Universe related config
0 commit comments