test: Fix bug in mininode.SpendDescription.deserialize

This commit is contained in:
Jack Grigg 2021-09-14 21:18:06 +01:00
parent a97cfd241d
commit befa57d0a6
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ class SpendDescription(object):
self.nullifier = deser_uint256(f)
self.rk = deser_uint256(f)
self.zkproof = Groth16Proof()
self.zkproof.deserialize()
self.zkproof.deserialize(f)
self.spendAuthSig = RedJubjubSignature()
self.spendAuthSig.deserialize(f)