Skip to content

Instantly share code, notes, and snippets.

@rfikki
Created July 22, 2016 00:32
Show Gist options
  • Save rfikki/a39d95549c05e8001722cab4de10cb10 to your computer and use it in GitHub Desktop.
Save rfikki/a39d95549c05e8001722cab4de10cb10 to your computer and use it in GitHub Desktop.
library ConvertLib{
function convert(uint amount,uint conversionRate) returns (uint convertedAmount)
{
return amount * conversionRate;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment