Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

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
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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants