RoadStress (OP)
Legendary
Offline
Activity: 1904
Merit: 1007
|
|
October 21, 2013, 06:25:29 PM |
|
I have no idea if this was proposed before. Let's say you have 10 addresses in a wallet.dat file. Is there a way to see the balance for each address? How hard is it to implement this?
|
|
|
|
Rluner
|
|
October 21, 2013, 06:38:44 PM |
|
Do you mean ten other addresses that have sent or received money from you?
Other than just manually searching the block chain, do you mean?
|
|
|
|
dserrano5
Legendary
Offline
Activity: 1974
Merit: 1030
|
|
October 21, 2013, 06:58:04 PM |
|
Which wallet are you talking about? Each one is different.
|
|
|
|
Rluner
|
|
October 21, 2013, 07:26:33 PM |
|
I was guessing bitcoin_qt as its the most common.
|
|
|
|
RoadStress (OP)
Legendary
Offline
Activity: 1904
Merit: 1007
|
|
October 21, 2013, 07:58:27 PM |
|
Well i am talking about bitcoin-qt. I thought this sub forum is only for that client.
@Rluner I am talking about ten other addresses that are mine. If i receive money on 3 addresses i would like to keep track of them individually from the client.
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3514
Merit: 4895
|
|
October 21, 2013, 10:52:27 PM |
|
The version of Bitcoin-Qt maintained by the Bitcoin Foundation does not have coin control built in.
Search the forum for "Yet Another Coin Control" for a version of Bitcoin-Qt that allows you this sort of control.
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 21, 2013, 10:57:57 PM Last edit: October 30, 2013, 11:18:21 AM by Raoul Duke |
|
You can always use the listaccounts command. Ofcourse you'll need to add each address to one account. And you'll need to use the command line or the console. The following may also work. listreceivedbyaddress 0 true
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3514
Merit: 4895
|
|
October 21, 2013, 11:00:31 PM |
|
You can always use the listaccounts command. Ofcourse you'll need to add each address to one account. And you'll need to use the command line or the console. The following may also work. listreceivedbyaddress 0 true I assume that: Would work as well, but that just seems messy.
|
|
|
|
RoadStress (OP)
Legendary
Offline
Activity: 1904
Merit: 1007
|
|
October 22, 2013, 08:26:43 PM Last edit: October 22, 2013, 10:10:28 PM by psy |
|
You can always use the listaccounts command. Ofcourse you'll need to add each address to one account. And you'll need to use the command line or the console. The following may also work. listreceivedbyaddress 0 true Thank you, but i find this feature useful in the main client or any other client. Why is it so hard to implement it? What is the actual process for this?
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 22, 2013, 10:13:27 PM |
|
You can always use the listaccounts command. Ofcourse you'll need to add each address to one account. And you'll need to use the command line or the console. The following may also work. listreceivedbyaddress 0 true Thank you, but i find this feature useful in the main client or any other client. Why is it so hard to implement it? What is the actual process for this? Because you can easily script something yourself using the rpc commands and get all the info you want presented the way you want. If you don't know how to do it, pay someone. Maybe not the best idea, but it's the most practical one, I think.
|
|
|
|
RoadStress (OP)
Legendary
Offline
Activity: 1904
Merit: 1007
|
|
October 30, 2013, 11:10:43 AM |
|
You can always use the listaccounts command. Ofcourse you'll need to add each address to one account. And you'll need to use the command line or the console. The following may also work. listreceivedbyaddress 0 true Thank you, but i find this feature useful in the main client or any other client. Why is it so hard to implement it? What is the actual process for this? Because you can easily script something yourself using the rpc commands and get all the info you want presented the way you want. If you don't know how to do it, pay someone. Maybe not the best idea, but it's the most practical one, I think. From a casual user point of veiw scripting using rpc commands is almost out of discussion. Also that command is good only to see how much i received on my addresses, but if i spend money from them i still can't see how much i have left in different addresses. It seems weird that only i have this usability problem.
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 30, 2013, 11:22:59 AM |
|
Like I said at first, you need to use the accounts feature. But the only way is using RPC commands. listaccounts [minconf=1] Returns Object that has account names as keys, account balances as values.
|
|
|
|
CIYAM
Legendary
Offline
Activity: 1890
Merit: 1086
Ian Knowles - CIYAM Lead Developer
|
|
October 30, 2013, 11:31:23 AM |
|
Like I said at first, you need to use the accounts feature. But the only way is using RPC commands.
Accounts != addresses. You will end up very confused if you don't know this and thus understand that you can't use accounts to do coin control.
|
|
|
|
|