mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 08:12:37 +01:00
modules/federation/send: Fix swapped eval opts.
This commit is contained in:
parent
b06a32691c
commit
260bc798d7
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ handle_pdus(client &client,
|
|||
vmopts.nothrows = -1U;
|
||||
vmopts.node_id = request.node_id;
|
||||
vmopts.txn_id = txn_id;
|
||||
vmopts.fetch_prev = bool(fetch_state);
|
||||
vmopts.fetch_state = bool(fetch_prev);
|
||||
vmopts.fetch_prev = bool(fetch_prev);
|
||||
vmopts.fetch_state = bool(fetch_state);
|
||||
vmopts.fetch_prev_wait_count = -1;
|
||||
m::vm::eval eval
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue