Skip to content

Commit

Permalink
Reduce amounts "deposited"
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly committed Nov 29, 2024
1 parent c7404f7 commit 3b1f093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tx-gen/gen-deposits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ for r in $random_u32; do

# generate an amount of ADA between 5 and 1000
rand=$(dd if=/dev/urandom count=4 bs=1 2> /dev/null | od -t u4 | tr -s ' ' | cut -d ' ' -f2 | head -1)
adas=$(( 5 + rand % 1000 ))
adas=$(( 50 + rand % 500 ))

current_adas+=( $adas )
current_addresses+=( $account_address )
Expand Down

0 comments on commit 3b1f093

Please sign in to comment.