If a pricing entry fails to parse, give an error
This commit is contained in:
parent
feff681f44
commit
8999607408
1 changed files with 2 additions and 1 deletions
|
|
@ -461,7 +461,8 @@ void instance_t::price_xact_directive(char * line)
|
||||||
{
|
{
|
||||||
optional<price_point_t> point =
|
optional<price_point_t> point =
|
||||||
amount_t::current_pool->parse_price_directive(skip_ws(line + 1));
|
amount_t::current_pool->parse_price_directive(skip_ws(line + 1));
|
||||||
assert(point);
|
if (! point)
|
||||||
|
throw parse_error(_("Pricing entry failed to parse"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void instance_t::nomarket_directive(char * line)
|
void instance_t::nomarket_directive(char * line)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue