Currently, in the transactions table, the fee is added as debit to the first output. It’s a different behaviour from gettransaction
RPC where the values are seen separately:
0gettransaction 56d4c03f65f32acecd80ec6ec1b5cd12eddcd35d705f2d4c82a90c85b1cf872a
1
2{
3 ...
4 "details": [
5 {
6 "account": "",
7 "address": "2N3AFooPuYvN6zWPpThPB8w8V48Ph31PuKH",
8 "category": "send",
9 "amount": -1,
10 "label": "",
11 "vout": 0,
12 "fee": -0.0000022,
13 "abandoned": false
14 },
15 {
16 "account": "",
17 "address": "2N42JYZHhwRXgrpuztod6CcEXfUDLTqbhY7",
18 "category": "send",
19 "amount": -1,
20 "label": "",
21 "vout": 1,
22 "fee": -0.0000022,
23 "abandoned": false
24 }
25 ],
26 ...
27}
Before: After: The row background now alternates based on txid, so in the capture above, the first 3 rows refer to the same transaction.