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
deBeauvoir
samourai-wallet-android
Commits
3239144c
Commit
3239144c
authored
Dec 20, 2021
by
T Dev. D
😎
Browse files
modif param for /tx endpoint
parent
e23272ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
app/src/main/java/com/samourai/wallet/api/APIFactory.java
app/src/main/java/com/samourai/wallet/api/APIFactory.java
+3
-1
No files found.
app/src/main/java/com/samourai/wallet/api/APIFactory.java
View file @
3239144c
...
...
@@ -1379,10 +1379,12 @@ public class APIFactory {
StringBuilder
url
=
new
StringBuilder
(
_url
);
url
.
append
(
"tx/"
);
url
.
append
(
hash
);
url
.
append
(
"?fees=
true
"
);
url
.
append
(
"?fees=
1
"
);
url
.
append
(
"&at="
);
url
.
append
(
getAccessToken
());
debug
(
"APIFactory"
,
"url:"
+
url
.
toString
());
String
response
=
WebUtil
.
getInstance
(
context
).
getURL
(
url
.
toString
());
jsonObject
=
new
JSONObject
(
response
);
}
...
...
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