You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Situation:
I try to send multiple tx's via local tx submission to my node.
Result:
If a tx is rejected by the node the local tx submission is stuck in the state of agency is theirs.
all subsequent tx's fail.
The channelbuffer temp vector is not cleared.
I also had the error that the tokio broadcast channel lagged, so I increased buffer in the plexer impl to 2000.
2023-10-05T14:28:34.163196Z INFO pallas_network::multiplexer: decoding done
result sending socket: Err(TxRejected(RejectReason([130, 2......... big array])))
2023-10-05T14:28:34.163203Z INFO pallas_network::multiplexer: decoding done
2023-10-05T14:28:34.163302Z INFO pallas_network::miniprotocols::localtxsubmission::client: sent SubmitTx
2023-10-05T14:28:34.163309Z WARN pallas_network::multiplexer: waiting for full message len=2874
2023-10-05T14:28:34.163309Z WARN pallas_network::multiplexer: waiting for full message len=0
2023-10-05T14:28:34.163313Z WARN pallas_network::multiplexer: buffer has data from previous payload
2023-10-05T14:28:34.163318Z ERROR pallas_network::multiplexer: err=Error { err: TypeMismatch(Array), pos: Some(1), msg: "expected u16" }
result sending socket: Err(ChannelError(Decoding("unexpected type array at position 1: expected u16")))
2023-10-05T14:33:56.365044Z INFO pallas_network::miniprotocols::localtxsubmission::client: sent SubmitTx
2023-10-05T14:33:56.365054Z WARN pallas_network::multiplexer: waiting for full message len=2874
2023-10-05T14:33:56.365058Z WARN pallas_network::multiplexer: buffer has data from previous payload
2023-10-05T14:33:56.365062Z ERROR pallas_network::multiplexer: err=Error { err: TypeMismatch(Array), pos: Some(1), msg: "expected u16" }
result sending socket: Err(ChannelError(Decoding("unexpected type array at position 1: expected u16")))
error send_submit_tx(): attempted to send message while agency is theirs
The text was updated successfully, but these errors were encountered:
Situation:
I try to send multiple tx's via local tx submission to my node.
Result:
If a tx is rejected by the node the local tx submission is stuck in the state of agency is theirs.
all subsequent tx's fail.
The channelbuffer temp vector is not cleared.
I also had the error that the tokio broadcast channel lagged, so I increased buffer in the plexer impl to 2000.
The text was updated successfully, but these errors were encountered: