Skip to content

Commit 0eb5150

Browse files
[static] Fixed formatting
Signed-off-by: Raymond Roestenburg <raymond.roestenburg@digitalasset.com>
1 parent c989fd0 commit 0eb5150

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

apps/app/src/main/scala/org/lfdecentralizedtrust/splice/console/ScanAppReference.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,12 +613,16 @@ abstract class ScanAppReference(
613613
@Help.Summary(
614614
"Get the total amulet balance (total supply), automatically forces a new acs snapshot to get an up2date response"
615615
)
616-
def getTotalAmuletBalance(amuletName: String = getSpliceInstanceNames().amuletName): BigDecimal = {
616+
def getTotalAmuletBalance(
617+
amuletName: String = getSpliceInstanceNames().amuletName
618+
): BigDecimal = {
617619
val _ = forceAcsSnapshotNow()
618620
lookupInstrument(amuletName)
619621
.flatMap(_.totalSupply.map(s => BigDecimal(s)))
620622
.getOrElse(
621-
throw new RuntimeException(s"'$amuletName' instrument not found or total supply not defined")
623+
throw new RuntimeException(
624+
s"'$amuletName' instrument not found or total supply not defined"
625+
)
622626
)
623627
}
624628

0 commit comments

Comments
 (0)