Skip to content
This repository was archived by the owner on May 16, 2024. It is now read-only.

Commit efb5ab4

Browse files
dungeon-master-666maratsarbasov
authored andcommitted
remove out_msgs limit
1 parent c2d93f6 commit efb5ab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tonlib/tonlib/TonlibClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2430,7 +2430,7 @@ struct ToRawTransactions {
24302430

24312431
if (trans.outmsg_cnt != 0) {
24322432
vm::Dictionary dict{trans.r1.out_msgs, 15};
2433-
for (int x = 0; x < trans.outmsg_cnt && x < 100; x++) {
2433+
for (int x = 0; x < trans.outmsg_cnt; x++) {
24342434
TRY_RESULT(out_msg, to_raw_message(dict.lookup_ref(td::BitArray<15>{x})));
24352435
fees += out_msg->fwd_fee_;
24362436
fees += out_msg->ihr_fee_;

0 commit comments

Comments
 (0)