mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
Transaction: remove unused counter from toString()
This commit is contained in:
parent
1090649211
commit
2e297169b1
1 changed files with 0 additions and 2 deletions
|
@ -769,7 +769,6 @@ public class Transaction extends BaseMessage {
|
|||
if (isCoinBase()) {
|
||||
s.append(indent).append("coinbase\n");
|
||||
} else if (!inputs.isEmpty()) {
|
||||
int i = 0;
|
||||
for (TransactionInput in : inputs) {
|
||||
s.append(indent).append(" ");
|
||||
s.append("in ");
|
||||
|
@ -813,7 +812,6 @@ public class Transaction extends BaseMessage {
|
|||
} catch (Exception e) {
|
||||
s.append("[exception: ").append(e.getMessage()).append("]\n");
|
||||
}
|
||||
i++;
|
||||
}
|
||||
} else {
|
||||
s.append(indent).append(" ");
|
||||
|
|
Loading…
Add table
Reference in a new issue