Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPopular repositories
1,931 contributions in the last year
Activity overview
Contribution activity
December 2020
Reviewed 2 pull requests in 2 repositories
cockroachdb/cockroach 1 pull request
opencensus-integrations/ocsql 1 pull request
Created an issue in cosmos/cosmos-sdk that received 4 comments
x/upgrade/types, all: use of time.Time.IsZero() only works for zero value created variables, but will fail if from using time.Unix(0, 0); perhaps switch this check
Summary of Bug
TL;DR: Let's change the calls from if time.Time.IsZero() to be if time.Time.UnixNano() <= 0 to ensure that values obtained from ti…