We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a48796 commit ba32228Copy full SHA for ba32228
cmd/monad/runloop_monad.cpp
@@ -184,6 +184,7 @@ Result<BlockExecOutput> propose_block(
184
}
185
186
187
+ BOOST_OUTCOME_TRY(static_validate_monad_senders<traits>(senders));
188
auto [entry, success] = block_cache.emplace(
189
block_id,
190
BlockCacheEntry{
@@ -202,7 +203,6 @@ Result<BlockExecOutput> propose_block(
202
203
204
205
- BOOST_OUTCOME_TRY(static_validate_monad_senders<traits>(senders));
206
207
// Create call frames vectors for tracers
208
std::vector<std::vector<CallFrame>> call_frames{block.transactions.size()};
0 commit comments