File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ namespace wallet {
2525
2626static int SATS_PER_OUTPUT = 1 ;
2727static int FEE_SATS = 1000 ;
28- static size_t SP_RECIPIENT_GROUP_LIMIT = 1000 ;
2928
3029static void WalletSPScan (
3130 benchmark::Bench& bench,
@@ -88,8 +87,8 @@ static void WalletSPScan(
8887 assert (spdest.has_value ());
8988
9089 const size_t num_sp_outputs = n_payments ?
91- std::min (SP_RECIPIENT_GROUP_LIMIT, *n_payments) :
92- std::min (SP_RECIPIENT_GROUP_LIMIT, outputs_per_tx);
90+ std::min (bip352:: SP_RECIPIENT_GROUP_LIMIT, *n_payments) :
91+ std::min (bip352:: SP_RECIPIENT_GROUP_LIMIT, outputs_per_tx);
9392 assert (num_sp_outputs <= outputs_per_tx); // n_payments must not be more that outputs_per_tx
9493 std::map<size_t , V0SilentPaymentDestination> dests;
9594 for (size_t i = 0 ; i < num_sp_outputs; ++i) {
You can’t perform that action at this time.
0 commit comments