bump nim-serialization (still wrong offset for when not object not fixed)

This commit is contained in:
Mamy André-Ratsimbazafy 2020-12-23 10:44:53 +01:00
parent bada5f1b69
commit 644c17fdbc
No known key found for this signature in database
GPG Key ID: 7B88AD1FE79492E1
2 changed files with 6 additions and 6 deletions

View File

@ -94,9 +94,9 @@ proc runSSZtests() =
of "AggregateAndProof": checkSSZ(AggregateAndProof, path, hash) of "AggregateAndProof": checkSSZ(AggregateAndProof, path, hash)
of "Attestation": checkSSZ(Attestation[Unchecked], path, hash) of "Attestation": checkSSZ(Attestation[Unchecked], path, hash)
of "AttestationData": checkSSZ(AttestationData, path, hash) of "AttestationData": checkSSZ(AttestationData, path, hash)
of "AttesterSlashing": checkSSZ(AttesterSlashing, path, hash) of "AttesterSlashing": checkSSZ(AttesterSlashing[Unchecked], path, hash)
of "BeaconBlock": checkSSZ(BeaconBlock, path, hash) of "BeaconBlock": checkSSZ(BeaconBlock[Unchecked], path, hash)
of "BeaconBlockBody": checkSSZ(BeaconBlockBody, path, hash) of "BeaconBlockBody": checkSSZ(BeaconBlockBody[Unchecked], path, hash)
of "BeaconBlockHeader": checkSSZ(BeaconBlockHeader, path, hash) of "BeaconBlockHeader": checkSSZ(BeaconBlockHeader, path, hash)
of "BeaconState": checkSSZ(BeaconState, path, hash) of "BeaconState": checkSSZ(BeaconState, path, hash)
of "Checkpoint": checkSSZ(Checkpoint, path, hash) of "Checkpoint": checkSSZ(Checkpoint, path, hash)
@ -108,12 +108,12 @@ proc runSSZtests() =
of "Fork": checkSSZ(Fork, path, hash) of "Fork": checkSSZ(Fork, path, hash)
of "ForkData": checkSSZ(ForkData, path, hash) of "ForkData": checkSSZ(ForkData, path, hash)
of "HistoricalBatch": checkSSZ(HistoricalBatch, path, hash) of "HistoricalBatch": checkSSZ(HistoricalBatch, path, hash)
of "IndexedAttestation": checkSSZ(IndexedAttestation, path, hash) of "IndexedAttestation": checkSSZ(IndexedAttestation[Unchecked], path, hash)
of "PendingAttestation": checkSSZ(PendingAttestation, path, hash) of "PendingAttestation": checkSSZ(PendingAttestation, path, hash)
of "ProposerSlashing": checkSSZ(ProposerSlashing, path, hash) of "ProposerSlashing": checkSSZ(ProposerSlashing, path, hash)
of "SignedAggregateAndProof": of "SignedAggregateAndProof":
checkSSZ(SignedAggregateAndProof, path, hash) checkSSZ(SignedAggregateAndProof, path, hash)
of "SignedBeaconBlock": checkSSZ(SignedBeaconBlock, path, hash) of "SignedBeaconBlock": checkSSZ(SignedBeaconBlock[Unchecked], path, hash)
of "SignedBeaconBlockHeader": of "SignedBeaconBlockHeader":
checkSSZ(SignedBeaconBlockHeader, path, hash) checkSSZ(SignedBeaconBlockHeader, path, hash)
of "SignedVoluntaryExit": checkSSZ(SignedVoluntaryExit, path, hash) of "SignedVoluntaryExit": checkSSZ(SignedVoluntaryExit, path, hash)

@ -1 +1 @@
Subproject commit 5b11c4173159a15d52f0bb6a26a1aa2b40f0f2be Subproject commit dfd6e349a62417b7951f17a0afea89a0c11d5ebc