mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-17 04:30:03 +02:00
7 lines
122 B
Go
7 lines
122 B
Go
package app
|
|
|
|
// State represents thalos runtime state
|
|
type State struct {
|
|
// Last processed block
|
|
CurrentBlock uint32
|
|
}
|