lock property

  1. @TagNumber(5)
bool get lock

Whether it is locked, if it is set to true, the delegated resources cannot be undelegated within 3 days. When the lock time is not over, if the owner delegates the same resources using the lock to the same address, the lock time will be reset to 3 days

Implementation

@$pb.TagNumber(5)
$core.bool get lock => $_getBF(4);
  1. @TagNumber(5)
set lock (bool v)

Implementation

@$pb.TagNumber(5)
set lock($core.bool v) {
  $_setBool(4, v);
}