Skip to content

Commit

Permalink
chore: Only use bvp for keying memstore
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed Jul 11, 2024
1 parent 91052b3 commit 9ec7f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/memory_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func (e *MemStore) Put(ctx context.Context, value []byte) ([]byte, error) {
return nil, err
}
// construct key
bytesKeys := append([]byte{0x4}, cert.BlobVerificationProof.InclusionProof...)
bytesKeys := cert.BlobVerificationProof.InclusionProof

certStr := string(bytesKeys)

Expand Down

0 comments on commit 9ec7f59

Please sign in to comment.