File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1079,6 +1079,7 @@ ClassicTransactionQueue::getMaxResourcesToFloodThisPeriod() const
1079
1079
TransactionQueue::BroadcastStatus
1080
1080
TransactionQueue::broadcastTx (TimestampedTx& tx)
1081
1081
{
1082
+ ZoneScoped;
1082
1083
// Must be main thread because we are accessing the overlay manager
1083
1084
releaseAssert (threadIsMain ());
1084
1085
@@ -1169,6 +1170,7 @@ SorobanTransactionQueue::getMaxResourcesToFloodThisPeriod() const
1169
1170
bool
1170
1171
SorobanTransactionQueue::broadcastSome ()
1171
1172
{
1173
+ ZoneScoped;
1172
1174
// Must be main thread for call to `broadcastTx`
1173
1175
releaseAssert (threadIsMain ());
1174
1176
@@ -1256,6 +1258,7 @@ SorobanTransactionQueue::getMaxQueueSizeOps() const
1256
1258
bool
1257
1259
ClassicTransactionQueue::broadcastSome ()
1258
1260
{
1261
+ ZoneScoped;
1259
1262
// Must be main thread for call to `broadcastTx`
1260
1263
releaseAssert (threadIsMain ());
1261
1264
@@ -1334,6 +1337,7 @@ ClassicTransactionQueue::broadcastSome()
1334
1337
void
1335
1338
TransactionQueue::broadcast (bool fromCallback, TxQueueLock const & guard)
1336
1339
{
1340
+ ZoneScoped;
1337
1341
// Must be called from the main thread due to the use of `mBroadcastTimer`
1338
1342
releaseAssert (threadIsMain ());
1339
1343
@@ -1378,6 +1382,7 @@ TransactionQueue::broadcast(bool fromCallback)
1378
1382
void
1379
1383
TransactionQueue::rebroadcast (TxQueueLock const & guard)
1380
1384
{
1385
+ ZoneScoped;
1381
1386
// For `broadcast` call
1382
1387
releaseAssert (threadIsMain ());
1383
1388
You can’t perform that action at this time.
0 commit comments