コード例 #1
0
 private bool IsCounterIsMining(DelayedCounter counter)
 {
     return(counter.SecondsRemaining > 0);
 }
コード例 #2
0
 private bool IsCounterAvailableForActivate(DelayedCounter counter, decimal currentFunds)
 {
     return(counter.UnlockValue <= currentFunds);
 }