OSDN Git Service

block height limit for before proposal block
[bytom/vapor.git] / math / algorithm.go
1 package math
2
3 func MinUint64(x, y uint64) uint64 {
4         if x < y {
5                 return x
6         }
7         return y
8 }