add TODOs in parseBitcoinURL

This commit is contained in:
Wladimir J. van der Laan 2011-08-07 17:06:34 +02:00
parent f839f96578
commit fb390d3505
1 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,8 @@ bool GUIUtil::parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out)
}
else // Amount is non-empty
{
// TODO: support <n>X<nexp> (exp = 8-nexp) (https://en.bitcoin.it/wiki/URI_Scheme)
// TODO: support <n>E<exp>
if(!BitcoinUnits::parse(BitcoinUnits::BTC, amount, &rv.amount))
{
return false;