minor: missing variable assignment in CheckSnapshot, struct-tag

This commit is contained in:
2023-10-04 11:40:33 -05:00
parent ab8fc0faa6
commit 807268d337
2 changed files with 3 additions and 3 deletions

View File

@@ -85,8 +85,8 @@ type Config struct {
FileKey []byte `json:"-"`
// for erasure coding
DataShards int `json:'data-shards'`
ParityShards int `json:'parity-shards'`
DataShards int `json:"data-shards"`
ParityShards int `json:"parity-shards"`
// for RSA encryption
rsaPrivateKey *rsa.PrivateKey