We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474274b commit ab6ed2bCopy full SHA for ab6ed2b
ledger/common/address.go
@@ -425,7 +425,7 @@ type byronAddressPayload struct {
425
426
type ByronAddressAttributes struct {
427
Payload []byte
428
- Network *uint8
+ Network *uint64
429
}
430
431
func (a *ByronAddressAttributes) UnmarshalCBOR(data []byte) error {
@@ -438,7 +438,7 @@ func (a *ByronAddressAttributes) UnmarshalCBOR(data []byte) error {
438
439
a.Payload = tmpData.Payload
440
if len(tmpData.NetworkRaw) > 0 {
441
- var tmpNetwork uint8
+ var tmpNetwork uint64
442
if _, err := cbor.Decode(tmpData.NetworkRaw, &tmpNetwork); err != nil {
443
return err
444
0 commit comments