Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(store): add tail header #200

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ type Store[H header.Header[H]] struct {
writesDn chan struct{}
// writeHead maintains the current write head
writeHead atomic.Pointer[H]
// tailHeader maintains the current tail header.
tailHeader atomic.Pointer[H]
// pending keeps headers pending to be written in one batch
pending *batch[H]

Expand Down Expand Up @@ -121,6 +123,8 @@ func (s *Store[H]) Init(ctx context.Context, initial H) error {
return err
}

s.tailHeader.Store(&initial)

log.Infow("initialized head", "height", initial.Height(), "hash", initial.Hash())
s.heightSub.Pub(initial)
return nil
Expand Down
2 changes: 2 additions & 0 deletions store/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ func TestStore(t *testing.T) {
ds := sync.MutexWrap(datastore.NewMapDatastore())
store := NewTestStore(t, ctx, ds, suite.Head())

assert.Equal(t, *store.tailHeader.Load(), suite.Head())

head, err := store.Head(ctx)
require.NoError(t, err)
assert.EqualValues(t, suite.Head().Hash(), head.Hash())
Expand Down
Loading