You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
555 B
15 lines
555 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
echo ""
|
||
|
echo "The setaccount RPC put the specified address in the given account"
|
||
|
echo ""
|
||
|
echo "Dependencies:"
|
||
|
echo "Getnewaddress RPC, if you don't have an address already"
|
||
|
echo "Getaccountaddress RPC, if account doesn't exist already"
|
||
|
echo ""
|
||
|
echo "Scenario: Verify that user is able to linked address with specified account"
|
||
|
echo "Result: Address should be linked to mentioned account"
|
||
|
echo ""
|
||
|
|
||
|
curl --url "http://127.0.0.1:7778" --data "{\"method\":\"setaccount\",\"params\":[\"RQK4mc7ZySXtQ6EweC4r2fcCdBTvsZqDc6\", \"IGUANA_CHANGE\"]}"
|