Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Romeo exits with Unexpected number of Stacks statuses updated #333

Open
radicleart opened this issue Oct 28, 2023 · 2 comments · May be fixed by #334
Open

Romeo exits with Unexpected number of Stacks statuses updated #333

radicleart opened this issue Oct 28, 2023 · 2 comments · May be fixed by #334
Assignees
Labels
bug Something isn't working

Comments

@radicleart
Copy link
Collaborator

Cause romeo process to exit.

last two lines of log

2023-10-28T13:06:06.680463Z DEBUG update: romeo::state: Ignoring Broadcasted status update for a Stacks transaction that is not acknowledged: 0000000000000000000000000000000000000000000000000000000000000000 event=StacksTransactionUpdate(0000000000000000000000000000000000000000000000000000000000000000, Broadcasted)
thread 'main' panicked at 'Unexpected number of Stacks statuses updated: 66', romeo/src/state.rs:353:17
@radicleart radicleart added the bug Something isn't working label Oct 28, 2023
@radicleart
Copy link
Collaborator Author

radicleart commented Oct 28, 2023

Changed state.rs:342 to

if statuses_updated != 1 {
	if config.strict {
		panic!(
		"Unexpected number of Stacks statuses updated: {}",
			statuses_updated
		);
	} else {
		debug!("Unexpected number of Stacks statuses updated");
	}
}

and spun it back up

@friedger
Copy link
Collaborator

Could be related to #328

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
No open projects
Status: Triage
Development

Successfully merging a pull request may close this issue.

4 participants