You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we pass a time larger than 253402300800 in time lock request, it will panic:
the root cause is amino require time in seconds less than 253402300800, and a unix timestamp is int64.
const (
// seconds of 01-01-0001minSecondsint64=-62135596800// seconds of 10000-01-01maxSecondsint64=253402300800// nanos have to be in interval: [0, 999999999]maxNanos=999999999
)
The text was updated successfully, but these errors were encountered:
When we pass a time larger than 253402300800 in time lock request, it will panic:
the root cause is amino require time in seconds less than 253402300800, and a unix timestamp is int64.
The text was updated successfully, but these errors were encountered: