Skip to content

Commit 7418fb7

Browse files
authored
Merge pull request #763 from input-output-hk/greg/762/fix_sqlite_printf
fix sqlite sprintf bug
2 parents fd01c99 + 758fbe3 commit 7418fb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mithril-aggregator/utils/monitoring/stake_signer_version.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ select
3636
version,
3737
total_epoch_stakes,
3838
stakes_version,
39-
printf("%02d %%", round((stakes_version * 100) / (total_epoch_stakes * 1.0))) as stakes_ratio,
39+
printf('%02d %%', round((stakes_version * 100) / (total_epoch_stakes * 1.0))) as stakes_ratio,
4040
count(party_id) as pool_count
4141
from summed_stakes_version
4242
group by epoch, version

0 commit comments

Comments
 (0)