Skip to content

Commit

Permalink
Test comments fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykoren committed Jul 11, 2023
1 parent e3e663d commit 0600f36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qa/rpc-tests/issuance.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ def run_test(self):

# Get a new Orchard account on node 1
acct1 = self.nodes[1].z_getnewaccount()['account']
ua1 = self.nodes[1].z_getaddressforaccount(acct0, ['orchard'])['address']
ua1 = self.nodes[1].z_getaddressforaccount(acct1, ['orchard'])['address']

# Activate NU5
self.nodes[0].generate(5)
self.sync_all()

# Send a transaction to node 0 so that it has an Orchard note to spend.
# Issue assets to an address on node 0
self.nodes[0].issue(0, ua0, "WBTC", 4001, True)

# Send a transaction to node 1 so that it has an Orchard note to spend.
# Issue assets to an address on node 1
self.nodes[0].issue(0, ua1, "WBTC", 42, True)

self.sync_all()
Expand Down

0 comments on commit 0600f36

Please sign in to comment.