so the reason more people are not getting paid is because most of the money is being paid to the owner in fees?
0xf303bde76a36411b7c0459efdd2e5f7069964203
https://etherscan.io/address/0xf303bde76a36411b7c0459efdd2e5f7069964203#internaltx fees += amount / 33; // 3% Fee
balance += amount; // balance update
if (fees != 0) {
if (balance > fees) {
owner.send(fees);
balance -= fees; //balance update
}
}
what's left goes to the first few investors, then amount becomes too low and stops the loop, making later investors get nothing?
is amount/33 really 3%?
Just trying to understand how this all works.