1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-17 04:30:03 +02:00

internal/config/builder.go: bind start-block, end-block flags to config

This commit is contained in:
Henrik Hautakoski 2024-02-18 11:02:11 +01:00
parent cb207b2f33
commit 117f1b50b4

View file

@ -21,7 +21,10 @@ type Builder struct {
func NewBuilder() *Builder {
return &Builder{
binds: map[string]string{},
binds: map[string]string{
"ship.start_block_num": "start-block",
"ship.end_block_num": "end-block",
},
}
}