Created
March 20, 2019 22:46
-
-
Save AnthonyAkentiev/c2e3c2f177ba4288b4034c5310789dfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Calculate how much event Organizer gets | |
X = (((markup_cents * feeOrg_ppm) / 10000) / 100); | |
// Which can be simplified: | |
X = (markup_cents * feeOrg_ppm) / 1000000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment