Yeah, the mmcfe-ng frontend's proportional system is choking and dying on the coin volume. I'm debugging it as we speak. Coins are not lost, here is the current wallet:
WALLET INFORMATION
Wallet Balance 59,214,549.30234000
Locked for users 31,289.09592717
Liquid Assets 59,183,260.20641283
PoS New Mint 13,631,488.00000000
Clearly there is a large issue. Keep chugging away, you'll get what's owed to you.
EDIT 1: 2013-08-18 1:12:02 - INFO --> 4 Lollaskates 130 9 18.13110181 95,059.19105761 0.00000000 1.90000000 . the cronjob thinks its paying properly. (That's 18% invalid, with a total 95k payout for that round). The issue is further downstream. Continuing.
EDIT 2: it looks like the pool is just truncating the value, how odd. Below are logs from the cronjob (payout) and the actual transaction that the job put in the database.
cron log snippet:
2013-08-18 2:00:02 - INFO --> 4 Lollaskates 103 11 8.11023622 42,520.99527311 0.00000000 0.84000000
2013-08-18 2:01:02 - INFO --> 4 Lollaskates 213 12 7.74263904 40,593.72737004 0.00000000 0.80000000
2013-08-18 2:02:02 - INFO --> 4 Lollaskates 51 1 7.17299578 37,607.15611505 0.00000000 0.74000000
2013-08-18 2:03:02 - INFO --> 4 Lollaskates 140 5 8.86637112 46,485.31981763 0.00000000 0.92000000
2013-08-18 2:04:02 - INFO --> 4 Lollaskates 137 9 11.90269331 62,404.39270113 0.00000000 1.24000000
2013-08-18 2:07:02 - INFO --> 4 Lollaskates 490 26 11.84719536 62,113.42360904 0.00000000 1.24000000
2013-08-18 2:08:02 - INFO --> 4 Lollaskates 147 10 13.21942446 69,307.85611284 0.00000000 1.38000000
2013-08-18 2:11:02 - INFO --> 4 Lollaskates 491 20 13.16353887 69,014.85467075 0.00000000 1.38000000
same transactions stored in the database by that cron job:
Timestamp Amt
| 2013-08-18 02:00:02 | 42 |
| 2013-08-18 02:01:02 | 40 |
| 2013-08-18 02:02:02 | 37 |
| 2013-08-18 02:03:02 | 46 |
| 2013-08-18 02:04:02 | 62 |
| 2013-08-18 02:07:02 | 62 |
| 2013-08-18 02:08:02 | 69 |
| 2013-08-18 02:11:02 | 69 |
+---------------------+--------+
How silly.
Edit 3: Fixed. Writing a quick script to fix already processed transactions, thanks for holding in there. Looks like i'll be submitting a commit and pull request to TheSerapher for mmcfe-ng
