Skip to content

Commit

Permalink
fix: remainingZnnBudget decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
alienc0der committed Jul 20, 2023
1 parent fbf7fe5 commit 0ae4858
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import 'package:stacked/stacked.dart';
import 'package:zenon_syrius_wallet_flutter/blocs/blocs.dart';
import 'package:zenon_syrius_wallet_flutter/main.dart';
import 'package:zenon_syrius_wallet_flutter/utils/utils.dart';
import 'package:zenon_syrius_wallet_flutter/widgets/widgets.dart';
import 'package:znn_sdk_dart/znn_sdk_dart.dart';
import 'package:zenon_syrius_wallet_flutter/widgets/reusable_widgets/custom_material_stepper.dart'
as custom_material_stepper;
import 'package:zenon_syrius_wallet_flutter/widgets/widgets.dart';
import 'package:znn_sdk_dart/znn_sdk_dart.dart';

enum PhaseCreationStep {
phaseDetails,
Expand Down Expand Up @@ -388,8 +388,8 @@ class _PhaseCreationStepperState extends State<PhaseCreationStepper> {
children: [
DottedBorderInfoWidget(
text: 'Remaining budget for the next phases is '
'$remainingZnnBudget ${kZnnCoin.symbol} and '
'$remainingQsrBudget ${kQsrCoin.symbol}',
'${remainingZnnBudget.addDecimals(coinDecimals)} ${kZnnCoin.symbol} and '
'${remainingQsrBudget.addDecimals(coinDecimals)} ${kQsrCoin.symbol}',
),
kVerticalSpacing,
Row(
Expand Down

0 comments on commit 0ae4858

Please sign in to comment.