Dev Ojha
Dev Ojha
yeah meant SDK context type. I feel like a global variable in telemetry will make the syntax for doing telemetry calls simpler at least, no idea if it would cause...
Asked @jackzampolin over DM, he saw no client issue with adding a global variable to the telemetry package, thats set on telemetry initialization. So lets go with that approach! (It...
Also avoiding the `time.Now()` calls.
it means replacing the `time.Now()` call with `telemetry.StartTimer()`, which then does the config check, and if so runs time.Now(), otherwise doesn't run time.Now()
Please, this would be a great time saver for so many integrations
A bunch of commands outputs got unexpectedly switched to stderr in the SDK v0.44 upgrade
@czarcas7ic would have a better idea than me. The big one that we had to work around was state exports
This is the interface that would have to be implemented. https://github.com/golang/go/blob/master/src/crypto/ecdsa/ecdsa.go#L51 and this is an example implementation: https://github.com/golang/go/blob/d4b26382342c98a95b85140b2863bc30c48edd68/src/crypto/elliptic/p256_asm.go#L236 The idea is to use the Strauss-Shamir trick, which is documented here:...
Other steps: - To modify the key format, you have to update the node struct to add `left_child_version` and `right_child_version` in the nodes - Probably delete the root key format,...
Wait I thought we decided not to do this