odra-vm 2.9.1

Odra Virtual Machine for testing and development.
Documentation
use anyhow::{Context, Result};
use odra_core::casper_types::U512;

#[derive(Eq, Hash, PartialEq, Clone, Default, Debug)]
pub struct AccountBalance {
    value: U512,
    prev_value: U512
}

impl AccountBalance {
    pub fn new(amount: U512) -> Self {
        Self {
            value: amount,
            prev_value: U512::zero()
        }
    }

    pub fn increase(&mut self, amount: U512) -> Result<()> {
        let result = self
            .value
            .checked_add(amount)
            .context("Addition overflow")?;

        self.prev_value = self.value;
        self.value = result;
        Ok(())
    }

    pub fn reduce(&mut self, amount: U512) -> Result<()> {
        let result = self
            .value
            .checked_sub(amount)
            .context("Subtraction overflow")?;
        self.prev_value = self.value;
        self.value = result;
        Ok(())
    }

    pub fn value(&self) -> U512 {
        self.value
    }
}

impl From<u32> for AccountBalance {
    fn from(value: u32) -> Self {
        Self::new(value.into())
    }
}

impl From<u64> for AccountBalance {
    fn from(value: u64) -> Self {
        Self::new(value.into())
    }
}