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
return fmt.Errorf("monkey in the datacenter: %w: %v", consensus.ErrInvalidBlock, txTaskErr)
ErrInvalidBlock - is not recoverable error. Node marking this block as bad and doesn't have other forks to switch. Probably need return some recoverable error. But anyway: current version is useful - for testing how node behave when doesn't have good forks.
The text was updated successfully, but these errors were encountered:
return fmt.Errorf("monkey in the datacenter: %w: %v", consensus.ErrInvalidBlock, txTaskErr)
ErrInvalidBlock
- is not recoverable error. Node marking this block as bad and doesn't have other forks to switch. Probably need return some recoverable error. But anyway: current version is useful - for testing how node behave when doesn't have good forks.The text was updated successfully, but these errors were encountered: