mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 10:01:02 +00:00
Merge pull request #1844
d18ff58a
format_utils: fix typo in assert message (lethos3)
This commit is contained in:
commit
e66866c1fc
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