Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Whirlpool
whirlpool-client-cli
Commits
55f08b70
Commit
55f08b70
authored
Jul 02, 2020
by
zeroleak
Browse files
add ApiUtxo.address
parent
880b873c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/main/java/com/samourai/whirlpool/cli/api/protocol/beans/ApiUtxo.java
...om/samourai/whirlpool/cli/api/protocol/beans/ApiUtxo.java
+6
-0
No files found.
src/main/java/com/samourai/whirlpool/cli/api/protocol/beans/ApiUtxo.java
View file @
55f08b70
...
...
@@ -10,6 +10,7 @@ public class ApiUtxo {
private
long
value
;
private
int
confirmations
;
private
String
path
;
private
String
address
;
private
WhirlpoolAccount
account
;
private
WhirlpoolUtxoStatus
status
;
...
...
@@ -31,6 +32,7 @@ public class ApiUtxo {
this
.
value
=
utxo
.
value
;
this
.
confirmations
=
utxo
.
confirmations
;
this
.
path
=
utxo
.
xpub
.
path
;
this
.
address
=
utxo
.
addr
;
this
.
account
=
whirlpoolUtxo
.
getAccount
();
WhirlpoolUtxoState
utxoState
=
whirlpoolUtxo
.
getUtxoState
();
...
...
@@ -72,6 +74,10 @@ public class ApiUtxo {
return
path
;
}
public
String
getAddress
()
{
return
address
;
}
public
WhirlpoolAccount
getAccount
()
{
return
account
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment