|
@@ -42,6 +42,7 @@ pub fn from_bytes<T>(val: &[u8]) -> Result<T, Error>
|
|
|
where
|
|
|
T: serde::de::DeserializeOwned + borsh::BorshDeserialize,
|
|
|
{
|
|
|
+ #[allow(clippy::useless_asref)]
|
|
|
borsh::BorshDeserialize::deserialize(&mut val.as_ref())
|
|
|
.map_err(|e| Error::Encoding(e.to_string()))
|
|
|
}
|
|
@@ -275,16 +276,19 @@ pub trait Storage {
|
|
|
) -> Result<Vec<PaymentFrom>, Error> {
|
|
|
let mut payments = self.get_negative_unspent_payments(account, asset).await?;
|
|
|
let target_amount = target_amount
|
|
|
- + payments
|
|
|
- .iter()
|
|
|
- .map(|payment| payment.amount.cents())
|
|
|
- .sum::<AmountCents>()
|
|
|
- .abs();
|
|
|
+ .checked_add(
|
|
|
+ payments
|
|
|
+ .iter()
|
|
|
+ .map(|payment| payment.amount.cents())
|
|
|
+ .sum::<AmountCents>()
|
|
|
+ .checked_abs()
|
|
|
+ .ok_or(Error::Overflow)?,
|
|
|
+ )
|
|
|
+ .ok_or(Error::Overflow)?;
|
|
|
|
|
|
payments.extend(
|
|
|
self.get_positive_unspent_payments(account, asset, target_amount)
|
|
|
- .await?
|
|
|
- .into_iter(),
|
|
|
+ .await?,
|
|
|
);
|
|
|
Ok(payments)
|
|
|
}
|