Skip to content

Commit

Permalink
Fix utxoSumForAddresses tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromtcosta committed Nov 30, 2021
1 parent 4500617 commit c8a76b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/real.test.js
Expand Up @@ -42,20 +42,20 @@ const specs: Array<Spec> = [
method: 'post',
endpoint: '/api/txs/utxoSumForAddresses',
input: { addresses: [] },
output: { sum: '0' },
output: { sum: '0', tokensBalance: [] },
},
{
name: 'zero utxoSumForAddresses',
method: 'post',
endpoint: '/api/txs/utxoSumForAddresses',
input: { addresses: ['9fzq1eba7sbiVYwtAV3GNufZEveKQsBPReX8Tmb9jtXjRJkttB7', '9ekxEAKApantTt1S6QTzAi9nypppCE2ovzT6ktVuCUvArdStYWC'] },
output: { sum: '0' },
output: { sum: '0', tokensBalance: [] },
},
{
method: 'post',
endpoint: '/api/txs/utxoSumForAddresses',
input: { addresses: ['9fzq1eba7sbiVYwtAV3GNufZEveKQsBPReX8Tmb9jtXjRJkttB7', '9gEcxPe4ztVEhk97tU9iU632juQxMwfht4kZ37xbWF2tdLqpcDk'] },
output: { sum: '100000000' },
output: { sum: '100000000', tokensBalance: [] },
},

{
Expand Down

0 comments on commit c8a76b6

Please sign in to comment.