This pull request increases the PSBTMaxLen and MaxVaultsPerUser constants from 2048 to 4096 and from 10 to 100 respectively, in addition to increasing OutputDescriptorMaxLen to 4096 to match the other changes. These changes improve the flexibility and scalability of the system by allowing for larger PSBTs and more vaults per user.
Changes Made
Increased PSBTMaxLen constant from 2048 to 4096.
Increased MaxVaultsPerUser constant from 10 to 100.
Increased OutputDescriptorMaxLen constant to 4096 to match the other changes.
Impact
These changes enable larger PSBTs and more vaults per user, which can improve the overall flexibility and scalability of the system. However, these changes may also have implications for other parts of the codebase that rely on the previous values of these constants. Any code that interacts with PSBTMaxLen, MaxVaultsPerUser, or OutputDescriptorMaxLen should be reviewed to ensure compatibility with the new values.
Description
This pull request increases the
PSBTMaxLen
andMaxVaultsPerUser
constants from 2048 to 4096 and from 10 to 100 respectively, in addition to increasingOutputDescriptorMaxLen
to 4096 to match the other changes. These changes improve the flexibility and scalability of the system by allowing for larger PSBTs and more vaults per user.Changes Made
PSBTMaxLen
constant from 2048 to 4096.MaxVaultsPerUser
constant from 10 to 100.OutputDescriptorMaxLen
constant to 4096 to match the other changes.Impact
These changes enable larger PSBTs and more vaults per user, which can improve the overall flexibility and scalability of the system. However, these changes may also have implications for other parts of the codebase that rely on the previous values of these constants. Any code that interacts with
PSBTMaxLen
,MaxVaultsPerUser
, orOutputDescriptorMaxLen
should be reviewed to ensure compatibility with the new values.