But I see in explorer.zcha.in 2 transactions - 0.1 and 0.01000501.
Is everything woking fine on my side? and is 10% normal for my parameters?
How to setup the specific fee (full amount of it) for the transaction?
Apologies for not following what you’re trying to say… if you’re comfortable sharing the txids with me in a direct message, I can take a look. If not, can you confirm that the values .1 and .0100… are listed as fees (yellow box) or transparent values (green box)?
Ah. This “unknown” address is most likely an autogenerated change address. Can you check your wallet for the “unknown” address and see if it matches the balance?
I used before the command
zcash-cli getaddressesbyaccount “”
It shows 3 addresses. One of them I’m using for mining, others are unused.
Now I found the command
zcash-cli listaddressgroupings
and see the different list of 3 addresses:
One of them I’m using for the mining, others are 2 addresses of the change results of 2 transactions
To only list your transparent addresses with balances, use zcash-cli listunspent.
The listaddressgroupings lists groups of addresses which have had their common ownership made public by common use as inputs or as the resulting change in past transactions.
The getaddressbyaccount is a depreciated command since there is only the default account in Zcash.
I suspect since the 2 unused addresses under getaddressbyaccount are addresses you generated in the past but never used and therefore are not subject to the groupings in listaddressbyaccount.
There is no functionality in zcash for removing addresses… in bitcoin, address archiving is left up to GUI interfaces.
You could export your wallet for backup, dump private keys to a file, then cherry pick which addresses to re-import in a clean wallet.
Additionally, 1.0.6 offers the option to mine to a single address which would solve the problem of generating a new address for each mining payment. 1.0.6 is set to release sometime today. https://github.com/zcash/zcash/pull/1965