Skip to content

Commit

Permalink
core/object/replicate: make validuntil camel-cased
Browse files Browse the repository at this point in the history
Not sure what made me go this way, there is no reason for it.

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
  • Loading branch information
carpawell committed Dec 23, 2024
1 parent f545bd3 commit 3a07bdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/core/object/replicate.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
sizeKey = "size"
deletedKey = "deleted"
lockedKey = "locked"
validUntilKey = "validuntil"
validUntilKey = "validUntil"
)

// EncodeReplicationMetaInfo uses NEO's map (strict order) serialized format as a raw
Expand All @@ -35,7 +35,7 @@ const (
// "size": payload size
// "deleted": array of _raw_ object IDs
// "locked": array of _raw_ object IDs
// "validuntil": last valid block number for meta information
// "validUntil": last valid block number for meta information
//
// Last valid epoch is object's creation epoch + 10.
func EncodeReplicationMetaInfo(o object.Object, vub uint64, magicNumber uint32) ([]byte, error) {
Expand Down

0 comments on commit 3a07bdd

Please sign in to comment.