File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
apps/app/src/main/scala/org/lfdecentralizedtrust/splice/console Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments