1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

Adding app/state.go

This commit is contained in:
Henrik Hautakoski 2023-11-01 21:46:15 +01:00
parent 64459eca10
commit 98a49538e2

7
app/state.go Normal file
View file

@ -0,0 +1,7 @@
package app
// State represents thalos runtime state
type State struct {
// Last processed block
CurrentBlock uint32
}