Nibirus journal implementation lacks the reset() function present in go-ethereum. While both implementations have newJournal(), go-ethereum specifically includes reset() for performance optimization:
Note that the optimization in this case is the fact that reset()clears the journal and then after this operation the journal can be used anew. It is semantically similar to calling newJournal, but the underlying slices
can be reused.
QA new journals can still be created; however, previousslices cant be used without being set again.
