Match error message in Amount::Read_i64() to allow_negative value

This commit is contained in:
Jack Grigg 2018-11-30 23:04:04 +00:00
parent 7ff32b04d6
commit e25b614573
No known key found for this signature in database
GPG Key ID: 1B8D649257DB0829

View File

@ -37,7 +37,11 @@ impl Amount {
} else {
Err(io::Error::new(
io::ErrorKind::InvalidData,
"Amount not in {0..MAX_MONEY}",
if allow_negative {
"Amount not in {-MAX_MONEY..MAX_MONEY}"
} else {
"Amount not in {0..MAX_MONEY}"
},
))
}
}