Skip to content

Commit

Permalink
Lower artificial coin-selection request amount from 1000 ada to 10 ada
Browse files Browse the repository at this point in the history
  • Loading branch information
Anviking committed May 3, 2024
1 parent 2f5e406 commit 8868e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/spec/e2e_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def script_hash
# Perform coin selection to select input to be used in minting contract
address = SHELLEY.addresses.list(@wid)[0]['id']
payload_cs = [{ address: address,
amount: { quantity: 1_000_000_000, unit: 'lovelace' } }]
amount: { quantity: 10_000_000, unit: 'lovelace' } }]
coin_selection = SHELLEY.coin_selections.random(@wid, payload_cs)
print coin_selection if coin_selection['inputs'].nil?
input = coin_selection['inputs'].select { |i| i['assets'] == [] }.first
Expand Down

0 comments on commit 8868e54

Please sign in to comment.