We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc692d5 commit 026d404Copy full SHA for 026d404
rpcserver.go
@@ -521,7 +521,10 @@ func (r *rpcServer) FinalizeBatch(_ context.Context,
521
return nil, err
522
}
523
524
- batch, err := r.cfg.AssetMinter.FinalizeBatch(feeRate)
+ // TODO(jhb): Add tapscript tree as an arg in FinalizeBatchRequest.
525
+ batch, err := r.cfg.AssetMinter.FinalizeBatch(
526
+ &tapgarden.FinalizeParams{FeeRate: feeRate},
527
+ )
528
if err != nil {
529
return nil, fmt.Errorf("unable to finalize batch: %w", err)
530
0 commit comments