Skip to content

Commit

Permalink
renaming TransactionZSA to TransactionV6
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-arte committed Sep 25, 2024
1 parent a482147 commit e717b54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zcash_test_vectors/transaction_zsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __bytes__(self):
return ret


class TransactionZSA(TransactionBase):
class TransactionV6(TransactionBase):
def __init__(self, rand, consensus_branch_id, have_orchard_zsa=True, have_burn=True, have_issuance=True):

# We cannot have burns without an OrchardZSA bundle.
Expand Down Expand Up @@ -178,7 +178,7 @@ def main():

for choice in allowed_choices:
for _ in range(2): # We generate two test vectors for each choice.
tx = TransactionZSA(rand, consensus_branch_id, *choice)
tx = TransactionV6(rand, consensus_branch_id, *choice)
populate_test_vector(rand, test_vectors, tx)

generate_test_vectors('orchard_zsa_digests', test_vectors)
Expand Down

0 comments on commit e717b54

Please sign in to comment.