Skip to content

Commit 758fbe3

Browse files
committed
fix sqlite sprintf bug
1 parent fd01c99 commit 758fbe3

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)