示例#1
0
 def start_distribution(self, now: bool = True) -> bool:
     """Start token distribution"""
     self.log.info(NU_BANNER)
     self.log.info("Starting NU Token Distribution | START")
     if self.token_balance == NU.ZERO():
         raise self.ActorError(f"Felix address {self.checksum_address} has 0 NU tokens.")
     self._distribution_task.start(interval=self.DISTRIBUTION_INTERVAL, now=now)
     return True
示例#2
0
 def current_stake(self) -> NU:
     """
     The total number of staked tokens, either locked or unlocked in the current period.
     """
     if self.stakes:
         return NU(sum(int(stake.value) for stake in self.stakes), 'NuNit')
     else:
         return NU.ZERO()
示例#3
0
 def is_staking(self) -> bool:
     """Checks if this Miner currently has active stakes / locked tokens."""
     return bool(self.locked_tokens > NU.ZERO())