Updated on 2026-08-14
This commit is contained in:
parent
d7c4519c2c
commit
bccc192c87
4 changed files with 30 additions and 14 deletions
|
|
@ -178,7 +178,9 @@ public class TangemCard {
|
|||
}
|
||||
|
||||
public Double amountFromInternalUnits(Long internalAmount) {
|
||||
return ((double) internalAmount) / getBlockchain().getMultiplier();
|
||||
// TODO java.lang.NullPointerException: Attempt to invoke virtual method 'long java.lang.Long.longValue()' on a null object reference
|
||||
return ((double) internalAmount) /
|
||||
getBlockchain().getMultiplier();
|
||||
}
|
||||
|
||||
public Double amountFromInternalUnits(Integer internalAmount) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue