mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
format_utils: fix typo in assert message
Fix two small typos as mentioned by reddit user nthterm.
This commit is contained in:
parent
4728ab977a
commit
d18ff58a1c
1 changed files with 2 additions and 2 deletions
|
@ -529,7 +529,7 @@ namespace cryptonote
|
||||||
default_decimal_point = decimal_point;
|
default_decimal_point = decimal_point;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ASSERT_MES_AND_THROW("Invalid decimal point specificatin: " << decimal_point);
|
ASSERT_MES_AND_THROW("Invalid decimal point specification: " << decimal_point);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//---------------------------------------------------------------
|
//---------------------------------------------------------------
|
||||||
|
@ -555,7 +555,7 @@ namespace cryptonote
|
||||||
case 0:
|
case 0:
|
||||||
return "piconero";
|
return "piconero";
|
||||||
default:
|
default:
|
||||||
ASSERT_MES_AND_THROW("Invalid decimal point specificatin: " << default_decimal_point);
|
ASSERT_MES_AND_THROW("Invalid decimal point specification: " << default_decimal_point);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//---------------------------------------------------------------
|
//---------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue