Skip to content

Commit

Permalink
revert test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
algoidan committed Feb 21, 2022
1 parent d5d2d3e commit 1c92a95
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions test/e2e-go/features/transactions/proof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func TestTxnMerkleProof(t *testing.T) {
// Transfer some money to acct0, as well as other random accounts to
// fill up the Merkle tree with more than one element.
// we do not want to have a full tree in order the catch an empty element edge case
for i := 0; i < 4; i++ {
for i := 0; i < 5; i++ {
accti, err := client.GenerateAddress(walletHandle)
a.NoError(err)

Expand All @@ -93,14 +93,6 @@ func TestTxnMerkleProof(t *testing.T) {
confirmedTx, err := fixture.WaitForConfirmedTxn(status.LastRound+10, baseAcct, txid.String())
a.NoError(err)

for i := 0; i < 4; i++ {
accti, err := client.GenerateAddress(walletHandle)
a.NoError(err)

_, err = client.SendPaymentFromUnencryptedWallet(baseAcct, accti, 1000, 10000000, nil)
a.NoError(err)
}

proofresp, err := client.TxnProof(txid.String(), confirmedTx.ConfirmedRound)
a.NoError(err)

Expand Down

0 comments on commit 1c92a95

Please sign in to comment.