lower case

This commit is contained in:
0xmuralik 2022-11-03 13:54:37 +05:30
parent a1f03a59bd
commit 74af84019c
5 changed files with 2017 additions and 65 deletions

View File

@ -2351,7 +2351,7 @@ Msg defines the bond Msg service.
| `url` | [string](#string) | | |
| `repo_registration_record_cid` | [string](#string) | | |
| `build_atrifact_cid` | [string](#string) | | |
| `TLS_cert_cid` | [string](#string) | | |
| `tls_cert_cid` | [string](#string) | | |
| `type` | [string](#string) | | |

20
go.mod
View File

@ -44,7 +44,7 @@ require (
github.com/vektah/gqlparser/v2 v2.5.1
golang.org/x/net v0.1.0
golang.org/x/text v0.4.0
google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e
google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c
google.golang.org/grpc v1.50.1
google.golang.org/protobuf v1.28.1
gopkg.in/yaml.v3 v3.0.1
@ -52,14 +52,11 @@ require (
)
require (
cloud.google.com/go v0.102.1 // indirect
cloud.google.com/go/compute v1.7.0 // indirect
cloud.google.com/go/iam v0.4.0 // indirect
cloud.google.com/go/storage v1.22.1 // indirect
cosmossdk.io/errors v1.0.0-beta.7 // indirect
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
github.com/99designs/keyring v1.2.1 // indirect
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
github.com/VictoriaMetrics/fastcache v1.6.0 // indirect
github.com/Workiva/go-datastructures v1.0.53 // indirect
@ -95,7 +92,7 @@ require (
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
github.com/edsrzf/mmap-go v1.0.0 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.13 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect
github.com/go-kit/kit v0.12.0 // indirect
@ -110,11 +107,8 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/google/orderedcode v0.0.1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
github.com/googleapis/gax-go/v2 v2.5.1 // indirect
github.com/googleapis/go-type-adapters v1.0.0 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
@ -130,6 +124,7 @@ require (
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/huin/goupnp v1.0.3 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/ipfs/go-block-format v0.0.2 // indirect
@ -152,6 +147,7 @@ require (
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
github.com/minio/highwayhash v1.0.2 // indirect
github.com/minio/sha256-simd v1.0.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
@ -161,6 +157,7 @@ require (
github.com/multiformats/go-base36 v0.1.0 // indirect
github.com/multiformats/go-multibase v0.0.3 // indirect
github.com/multiformats/go-varint v0.0.6 // indirect
github.com/mwitkow/go-proto-validators v0.3.2 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
@ -172,6 +169,8 @@ require (
github.com/prometheus/common v0.34.0 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/prometheus/tsdb v0.7.1 // indirect
github.com/pseudomuto/protoc-gen-doc v1.5.1 // indirect
github.com/pseudomuto/protokit v0.2.1 // indirect
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
github.com/rjeczalik/notify v0.9.1 // indirect
github.com/rs/zerolog v1.27.0 // indirect
@ -196,12 +195,9 @@ require (
go.opencensus.io v0.23.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/term v0.1.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/api v0.93.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect

1956
go.sum

File diff suppressed because it is too large Load Diff

View File

@ -26,6 +26,6 @@ message WebsiteRegistrationRecord {
string repo_registration_record_cid = 2
[(gogoproto.moretags) = "json:\"repoRegistrationRecordCID\" yaml:\"repoRegistrationRecordCID\""];
string build_atrifact_cid = 3 [(gogoproto.moretags) = "json:\"buildArtifactCID\" yaml:\"buildArtifactCID\""];
string TLS_cert_cid = 4 [(gogoproto.moretags) = "json:\"TLSCertCID\" yaml:\"TLSCertCID\""];
string tls_cert_cid = 4 [(gogoproto.moretags) = "json:\"TLSCertCID\" yaml:\"TLSCertCID\""];
string type = 5 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
}

View File

@ -179,7 +179,7 @@ type WebsiteRegistrationRecord struct {
Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty" json:"url" yaml:"url"`
RepoRegistrationRecordCid string `protobuf:"bytes,2,opt,name=repo_registration_record_cid,json=repoRegistrationRecordCid,proto3" json:"repo_registration_record_cid,omitempty" json:"repoRegistrationRecordCID" yaml:"repoRegistrationRecordCID"`
BuildAtrifactCid string `protobuf:"bytes,3,opt,name=build_atrifact_cid,json=buildAtrifactCid,proto3" json:"build_atrifact_cid,omitempty" json:"buildArtifactCID" yaml:"buildArtifactCID"`
TLSCertCid string `protobuf:"bytes,4,opt,name=TLS_cert_cid,json=TLSCertCid,proto3" json:"TLS_cert_cid,omitempty" json:"TLSCertCID" yaml:"TLSCertCID"`
TlsCertCid string `protobuf:"bytes,4,opt,name=tls_cert_cid,json=tlsCertCid,proto3" json:"tls_cert_cid,omitempty" json:"TLSCertCID" yaml:"TLSCertCID"`
Type string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty" json:"type" yaml:"type"`
}
@ -237,9 +237,9 @@ func (m *WebsiteRegistrationRecord) GetBuildAtrifactCid() string {
return ""
}
func (m *WebsiteRegistrationRecord) GetTLSCertCid() string {
func (m *WebsiteRegistrationRecord) GetTlsCertCid() string {
if m != nil {
return m.TLSCertCid
return m.TlsCertCid
}
return ""
}
@ -263,47 +263,47 @@ func init() {
var fileDescriptor_7f2d1895d048a86a = []byte{
// 647 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0x4f, 0x4f, 0xd4, 0x4e,
0x18, 0xc7, 0x29, 0xbb, 0x40, 0x18, 0xf8, 0x25, 0xfc, 0x1a, 0x8d, 0x8b, 0xc8, 0x16, 0x96, 0x18,
0x48, 0x88, 0xed, 0x22, 0x21, 0x31, 0x7a, 0xe2, 0x8f, 0x89, 0x9b, 0x10, 0x43, 0x06, 0x8c, 0xc6,
0x4b, 0x9d, 0x4e, 0xc7, 0x75, 0x4c, 0xb7, 0x43, 0xa6, 0xd3, 0x0d, 0xeb, 0x0b, 0xf0, 0xec, 0x8b,
0xf0, 0x05, 0xf8, 0x32, 0x3c, 0x72, 0xf4, 0xd4, 0x18, 0x38, 0x79, 0xed, 0x2b, 0x30, 0x33, 0xd3,
0x76, 0x87, 0x6d, 0x20, 0xde, 0x9e, 0xf9, 0x3e, 0xdf, 0xe7, 0xf3, 0xcc, 0x7f, 0xe0, 0x0e, 0xd3,
0x08, 0xa3, 0x98, 0x7e, 0x21, 0x5e, 0x8c, 0x06, 0x24, 0x21, 0x7c, 0x48, 0x31, 0xf1, 0x86, 0x3b,
0x01, 0x11, 0x68, 0xc7, 0x43, 0x42, 0x70, 0x1a, 0xa4, 0x82, 0x24, 0xee, 0x39, 0x67, 0x82, 0xd9,
0xab, 0x95, 0xdf, 0x35, 0xfc, 0x6e, 0xe1, 0x7f, 0x78, 0xaf, 0xcf, 0xfa, 0x4c, 0x39, 0x3d, 0x19,
0xe9, 0xa2, 0xce, 0xf7, 0x69, 0xb0, 0x72, 0xaa, 0x9d, 0x27, 0x9c, 0x0d, 0x69, 0x48, 0x38, 0x24,
0x7d, 0x9a, 0x08, 0x8e, 0x04, 0x65, 0xb1, 0xfd, 0x0c, 0xcc, 0x05, 0x2c, 0x0e, 0x7d, 0x1a, 0xb6,
0xac, 0x35, 0x6b, 0x6b, 0xfe, 0xc0, 0xc9, 0x33, 0x67, 0xe5, 0x73, 0xc2, 0xe2, 0xe7, 0x1d, 0x99,
0xe8, 0x85, 0x9d, 0xb5, 0x11, 0x1a, 0x44, 0xd5, 0x08, 0xce, 0xea, 0xc0, 0x3e, 0x02, 0x20, 0x42,
0x98, 0xc5, 0x14, 0xcb, 0xe2, 0x69, 0x55, 0xfc, 0x38, 0xcf, 0x9c, 0x75, 0x5d, 0x5c, 0xe4, 0xc6,
0xf5, 0x63, 0x01, 0xce, 0x57, 0xb1, 0x7d, 0x06, 0x9a, 0x17, 0x7b, 0xdd, 0x6e, 0xab, 0xb1, 0x66,
0x6d, 0x2d, 0x3c, 0xdd, 0x70, 0xef, 0x5c, 0xa3, 0xfb, 0x6e, 0xaf, 0xdb, 0x3d, 0x58, 0xc9, 0x33,
0xe7, 0x81, 0x6e, 0x22, 0x4b, 0x4b, 0xbe, 0x8a, 0xa1, 0xa2, 0xd9, 0x1e, 0x68, 0x8a, 0xd1, 0x39,
0x69, 0x35, 0xd5, 0xac, 0x8c, 0x02, 0xa9, 0x96, 0x05, 0x2a, 0x86, 0xca, 0xd8, 0xf9, 0xd3, 0x00,
0x4d, 0x09, 0xb7, 0x5f, 0x81, 0x05, 0xcc, 0x06, 0x03, 0x16, 0xfb, 0xb2, 0x7f, 0xb1, 0x27, 0x9b,
0x79, 0xe6, 0x6c, 0x68, 0x80, 0x4e, 0xbe, 0x46, 0x83, 0x0a, 0x63, 0x28, 0x10, 0x8c, 0x07, 0xf6,
0x07, 0xf0, 0x3f, 0xe3, 0x7d, 0xb9, 0x16, 0xb5, 0xd3, 0x7e, 0x1a, 0x53, 0x51, 0x6c, 0xd3, 0x6e,
0x9e, 0x39, 0x9e, 0xe6, 0x99, 0x96, 0x37, 0x31, 0x15, 0x25, 0xb5, 0xa6, 0xc3, 0xa5, 0x49, 0xa9,
0xd6, 0x41, 0xcd, 0xb8, 0x71, 0x57, 0x07, 0x73, 0xde, 0x35, 0xfd, 0x66, 0x07, 0xb5, 0x86, 0x13,
0xf0, 0x5f, 0xc4, 0x30, 0x8a, 0xa8, 0x18, 0x69, 0xba, 0xde, 0xd0, 0xed, 0x3c, 0x73, 0x36, 0x8b,
0x63, 0x2e, 0xd2, 0x26, 0xf9, 0x86, 0x06, 0x17, 0xcd, 0xa1, 0xbc, 0x35, 0x89, 0x40, 0x82, 0x68,
0xdc, 0xcc, 0xe4, 0xad, 0x51, 0x39, 0x93, 0x35, 0x16, 0xe0, 0x7c, 0x15, 0xdb, 0x2f, 0xc0, 0x1c,
0x66, 0x69, 0x2c, 0xf8, 0xa8, 0x35, 0xab, 0x10, 0xeb, 0x79, 0xe6, 0xac, 0x96, 0x27, 0xa4, 0x12,
0xe3, 0xe3, 0xd1, 0x43, 0x58, 0x56, 0x74, 0x7e, 0x34, 0xc0, 0xf2, 0x5b, 0x12, 0x24, 0x54, 0x10,
0xf3, 0x29, 0x40, 0x82, 0x19, 0x0f, 0xed, 0x6d, 0xd0, 0x48, 0x79, 0x54, 0x1c, 0xfc, 0x72, 0x9e,
0x39, 0xf7, 0x35, 0x36, 0xe5, 0x51, 0x89, 0x94, 0x21, 0x94, 0x2e, 0xfb, 0xab, 0x05, 0x1e, 0x71,
0x72, 0xce, 0x7c, 0x6e, 0x80, 0x7c, 0xae, 0x48, 0x3e, 0xae, 0x9e, 0xc5, 0xcb, 0x3c, 0x73, 0xf6,
0x35, 0x46, 0xba, 0xeb, 0x5d, 0x0f, 0x7b, 0x47, 0x25, 0xfc, 0x76, 0x03, 0x5c, 0xbe, 0x25, 0x47,
0x43, 0x1b, 0x01, 0x3b, 0x48, 0x69, 0x14, 0xfa, 0x48, 0x70, 0xfa, 0x11, 0x61, 0xa1, 0xba, 0xd7,
0xee, 0x82, 0xf2, 0xec, 0x73, 0xa1, 0x2c, 0x46, 0xd3, 0x9a, 0x0e, 0x97, 0xb4, 0x54, 0xd0, 0x64,
0x8b, 0x1e, 0x58, 0x3c, 0x3b, 0x3e, 0xf5, 0x31, 0xe1, 0x1a, 0xde, 0x9c, 0x7c, 0x1a, 0x67, 0xc7,
0xa7, 0x87, 0x84, 0x9b, 0x58, 0x43, 0x81, 0xa0, 0x1c, 0xd0, 0xb0, 0x7a, 0x9e, 0x33, 0xff, 0xf8,
0x3c, 0x0f, 0x7a, 0x3f, 0xaf, 0xda, 0xd6, 0xe5, 0x55, 0xdb, 0xfa, 0x7d, 0xd5, 0xb6, 0xbe, 0x5d,
0xb7, 0xa7, 0x2e, 0xaf, 0xdb, 0x53, 0xbf, 0xae, 0xdb, 0x53, 0xef, 0xbd, 0x3e, 0x15, 0x9f, 0xd2,
0xc0, 0xc5, 0x6c, 0xe0, 0x61, 0xc2, 0xf1, 0x13, 0xca, 0xbc, 0xe2, 0x77, 0x09, 0xbd, 0x8b, 0x1b,
0x1f, 0xab, 0x24, 0x25, 0xc1, 0xac, 0xfa, 0x17, 0x77, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x54,
0x64, 0xed, 0xc7, 0x7e, 0x05, 0x00, 0x00,
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0x4d, 0x4f, 0xd4, 0x40,
0x18, 0xc7, 0x29, 0xbb, 0x40, 0x18, 0x30, 0xc1, 0x46, 0xe3, 0x22, 0xb2, 0x85, 0x25, 0x06, 0x12,
0x62, 0xbb, 0x48, 0x48, 0x8c, 0x9e, 0x78, 0x31, 0x71, 0x13, 0x63, 0xc8, 0x80, 0xd1, 0x78, 0xa9,
0xd3, 0xe9, 0xb8, 0x8e, 0xe9, 0x76, 0xc8, 0x74, 0xba, 0x61, 0xfd, 0x00, 0x9e, 0xfd, 0x10, 0x7e,
0x00, 0x3f, 0x86, 0x47, 0x8e, 0x9e, 0x1a, 0x03, 0x27, 0xaf, 0xfd, 0x04, 0x66, 0x66, 0xda, 0xee,
0xb0, 0x0d, 0xc4, 0xdb, 0x33, 0xff, 0xe7, 0xff, 0xfc, 0x9e, 0x79, 0x07, 0xee, 0x30, 0x8d, 0x30,
0x8a, 0xe9, 0x57, 0xe2, 0xc5, 0x68, 0x40, 0x12, 0xc2, 0x87, 0x14, 0x13, 0x6f, 0xb8, 0x13, 0x10,
0x81, 0x76, 0x3c, 0x24, 0x04, 0xa7, 0x41, 0x2a, 0x48, 0xe2, 0x9e, 0x71, 0x26, 0x98, 0xbd, 0x5a,
0xf9, 0x5d, 0xc3, 0xef, 0x16, 0xfe, 0x87, 0xf7, 0xfa, 0xac, 0xcf, 0x94, 0xd3, 0x93, 0x91, 0x2e,
0xea, 0xfc, 0x98, 0x06, 0x2b, 0x27, 0xda, 0x79, 0xcc, 0xd9, 0x90, 0x86, 0x84, 0x43, 0xd2, 0xa7,
0x89, 0xe0, 0x48, 0x50, 0x16, 0xdb, 0xcf, 0xc0, 0x5c, 0xc0, 0xe2, 0xd0, 0xa7, 0x61, 0xcb, 0x5a,
0xb3, 0xb6, 0xe6, 0x0f, 0x9c, 0x3c, 0x73, 0x56, 0xbe, 0x24, 0x2c, 0x7e, 0xde, 0x91, 0x89, 0x5e,
0xd8, 0x59, 0x1b, 0xa1, 0x41, 0x54, 0x8d, 0xe0, 0xac, 0x0e, 0xec, 0x23, 0x00, 0x22, 0x84, 0x59,
0x4c, 0xb1, 0x2c, 0x9e, 0x56, 0xc5, 0x8f, 0xf3, 0xcc, 0x59, 0xd7, 0xc5, 0x45, 0x6e, 0x5c, 0x3f,
0x16, 0xe0, 0x7c, 0x15, 0xdb, 0xa7, 0xa0, 0x79, 0xbe, 0xd7, 0xed, 0xb6, 0x1a, 0x6b, 0xd6, 0xd6,
0xc2, 0xd3, 0x0d, 0xf7, 0xd6, 0x35, 0xba, 0xef, 0xf7, 0xba, 0xdd, 0x83, 0x95, 0x3c, 0x73, 0x1e,
0xe8, 0x26, 0xb2, 0xb4, 0xe4, 0xab, 0x18, 0x2a, 0x9a, 0xed, 0x81, 0xa6, 0x18, 0x9d, 0x91, 0x56,
0x53, 0xcd, 0xca, 0x28, 0x90, 0x6a, 0x59, 0xa0, 0x62, 0xa8, 0x8c, 0x9d, 0xbf, 0x0d, 0xd0, 0x94,
0x70, 0xfb, 0x15, 0x58, 0xc0, 0x6c, 0x30, 0x60, 0xb1, 0x2f, 0xfb, 0x17, 0x7b, 0xb2, 0x99, 0x67,
0xce, 0x86, 0x06, 0xe8, 0xe4, 0x1b, 0x34, 0xa8, 0x30, 0x86, 0x02, 0xc1, 0x78, 0x60, 0x7f, 0x04,
0x77, 0x19, 0xef, 0xcb, 0xb5, 0xa8, 0x9d, 0xf6, 0xd3, 0x98, 0x8a, 0x62, 0x9b, 0x76, 0xf3, 0xcc,
0xf1, 0x34, 0xcf, 0xb4, 0xbc, 0x8d, 0xa9, 0x28, 0xa9, 0x35, 0x1d, 0x2e, 0x4d, 0x4a, 0xb5, 0x0e,
0x6a, 0xc6, 0x8d, 0xdb, 0x3a, 0x98, 0xf3, 0xae, 0xe9, 0xd7, 0x3b, 0xa8, 0x35, 0x1c, 0x83, 0x3b,
0x11, 0xc3, 0x28, 0xa2, 0x62, 0xa4, 0xe9, 0x7a, 0x43, 0xb7, 0xf3, 0xcc, 0xd9, 0x2c, 0x8e, 0xb9,
0x48, 0x9b, 0xe4, 0x6b, 0x1a, 0x5c, 0x34, 0x87, 0xf2, 0xd6, 0x24, 0x02, 0x09, 0xa2, 0x71, 0x33,
0x93, 0xb7, 0x46, 0xe5, 0x4c, 0xd6, 0x58, 0x80, 0xf3, 0x55, 0x6c, 0xbf, 0x00, 0x73, 0x98, 0xa5,
0xb1, 0xe0, 0xa3, 0xd6, 0xac, 0x42, 0xac, 0xe7, 0x99, 0xb3, 0x5a, 0x9e, 0x90, 0x4a, 0x8c, 0x8f,
0x47, 0x0f, 0x61, 0x59, 0xd1, 0xf9, 0xd9, 0x00, 0xcb, 0xef, 0x48, 0x90, 0x50, 0x41, 0xcc, 0xa7,
0x00, 0x09, 0x66, 0x3c, 0xb4, 0xb7, 0x41, 0x23, 0xe5, 0x51, 0x71, 0xf0, 0xcb, 0x79, 0xe6, 0xdc,
0xd7, 0xd8, 0x94, 0x47, 0x25, 0x52, 0x86, 0x50, 0xba, 0xec, 0x6f, 0x16, 0x78, 0xc4, 0xc9, 0x19,
0xf3, 0xb9, 0x01, 0xf2, 0xb9, 0x22, 0xf9, 0xb8, 0x7a, 0x16, 0x2f, 0xf3, 0xcc, 0xd9, 0xd7, 0x18,
0xe9, 0xae, 0x77, 0x3d, 0xec, 0x1d, 0x95, 0xf0, 0x9b, 0x0d, 0x70, 0xf9, 0x86, 0x1c, 0x0d, 0x6d,
0x04, 0xec, 0x20, 0xa5, 0x51, 0xe8, 0x23, 0xc1, 0xe9, 0x27, 0x84, 0x85, 0xea, 0x5e, 0xbb, 0x0b,
0xca, 0xb3, 0xcf, 0x85, 0xb2, 0x18, 0x4d, 0x6b, 0x3a, 0x5c, 0xd2, 0x52, 0x41, 0x93, 0x2d, 0x7a,
0x60, 0x51, 0x44, 0x89, 0x8f, 0x09, 0xd7, 0xf0, 0xe6, 0xe4, 0xd3, 0x38, 0x7d, 0x7d, 0x72, 0x48,
0xb8, 0x89, 0x35, 0x14, 0x08, 0x44, 0x94, 0xa8, 0x01, 0x0d, 0xab, 0xe7, 0x39, 0xf3, 0x9f, 0xcf,
0xf3, 0xa0, 0xf7, 0xeb, 0xb2, 0x6d, 0x5d, 0x5c, 0xb6, 0xad, 0x3f, 0x97, 0x6d, 0xeb, 0xfb, 0x55,
0x7b, 0xea, 0xe2, 0xaa, 0x3d, 0xf5, 0xfb, 0xaa, 0x3d, 0xf5, 0xc1, 0xeb, 0x53, 0xf1, 0x39, 0x0d,
0x5c, 0xcc, 0x06, 0x1e, 0x26, 0x1c, 0x3f, 0xa1, 0xcc, 0x2b, 0x7e, 0x97, 0xd0, 0x3b, 0xbf, 0xf6,
0xb1, 0x4a, 0x52, 0x12, 0xcc, 0xaa, 0x7f, 0x71, 0xf7, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe5,
0x94, 0x12, 0x91, 0x7e, 0x05, 0x00, 0x00,
}
func (m *ServiceProviderRegistration) Marshal() (dAtA []byte, err error) {
@ -454,10 +454,10 @@ func (m *WebsiteRegistrationRecord) MarshalToSizedBuffer(dAtA []byte) (int, erro
i--
dAtA[i] = 0x2a
}
if len(m.TLSCertCid) > 0 {
i -= len(m.TLSCertCid)
copy(dAtA[i:], m.TLSCertCid)
i = encodeVarintAttributes(dAtA, i, uint64(len(m.TLSCertCid)))
if len(m.TlsCertCid) > 0 {
i -= len(m.TlsCertCid)
copy(dAtA[i:], m.TlsCertCid)
i = encodeVarintAttributes(dAtA, i, uint64(len(m.TlsCertCid)))
i--
dAtA[i] = 0x22
}
@ -572,7 +572,7 @@ func (m *WebsiteRegistrationRecord) Size() (n int) {
if l > 0 {
n += 1 + l + sovAttributes(uint64(l))
}
l = len(m.TLSCertCid)
l = len(m.TlsCertCid)
if l > 0 {
n += 1 + l + sovAttributes(uint64(l))
}
@ -1140,7 +1140,7 @@ func (m *WebsiteRegistrationRecord) Unmarshal(dAtA []byte) error {
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field TLSCertCid", wireType)
return fmt.Errorf("proto: wrong wireType = %d for field TlsCertCid", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
@ -1168,7 +1168,7 @@ func (m *WebsiteRegistrationRecord) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.TLSCertCid = string(dAtA[iNdEx:postIndex])
m.TlsCertCid = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 5:
if wireType != 2 {