aboutsummaryrefslogblamecommitdiff
path: root/tests/libwallet_api_tests/scripts/send_funds.sh
blob: 3ce92335329b438caf08a111c3688b28391d7f56 (plain) (tree)
1
2
3
4
5
6
7

           



                                      
                                                            




                                                                                              

















                                    

 
#!/bin/bash

function send_funds {
    local amount=$1
    local dest=$(cat "$2.address.txt")

    monero-wallet-cli --wallet-file wallet_m --password "" \
        --testnet --trusted-daemon --daemon-address localhost:38081  --log-file wallet_m.log \
        --command transfer $dest $amount 
}


function seed_wallets {
    local amount=$1
    send_funds $amount wallet_01.bin
    send_funds $amount wallet_02.bin
    send_funds $amount wallet_03.bin
    send_funds $amount wallet_04.bin
    send_funds $amount wallet_05.bin
    send_funds $amount wallet_06.bin
}

seed_wallets 1
seed_wallets 2
seed_wallets 5
seed_wallets 10
seed_wallets 20
seed_wallets 50
seed_wallets 100