Skip to content

Commit

Permalink
fix: reduce UTXO batch size query limit to account for 4MB frame size (
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Jul 19, 2021
2 parents a887d9d + 1541f8d commit c4f5a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base_layer/wallet/src/output_manager_service/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl Default for OutputManagerServiceConfig {
fn default() -> Self {
Self {
base_node_query_timeout: Duration::from_secs(60),
max_utxo_query_size: 5000,
max_utxo_query_size: 3500,
prevent_fee_gt_amount: true,
peer_dial_retry_timeout: Duration::from_secs(20),
seed_word_language: MnemonicLanguage::English,
Expand Down

0 comments on commit c4f5a87

Please sign in to comment.