Skip to content

Commit 75c8ddd

Browse files
committed
Increase default imported msg queue limit
1 parent 99ac9ad commit 75c8ddd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/block/block.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ static inline std::ostream& operator<<(std::ostream& os, const MsgProcessedUptoC
219219
struct ImportedMsgQueueLimits {
220220
// Default values
221221
td::uint32 max_bytes = 1 << 16;
222-
td::uint32 max_msgs = 30;
222+
td::uint32 max_msgs = 100;
223223
bool deserialize(vm::CellSlice& cs);
224224
ImportedMsgQueueLimits operator*(td::uint32 x) const {
225225
return {max_bytes * x, max_msgs * x};

0 commit comments

Comments
 (0)