Nisheeth Barthwal

Results 20 issues of Nisheeth Barthwal

## Summary This PR fixes #997 In most go libraries nowadays (etcd, kubernets, aws, etc.) the [functional options pattern](https://dave.cheney.net/2014/10/17/functional-options-for-friendly-apis) is being used: ```go c := client.New(client.WithTimeout(), client.WithLabel("bar")) ``` ```go type...

enhancement
input needed

**What** Currently retrieving the calls via `mock.Calls` results in a data race condition when the test is using multiple go routines. **Expected** A thread-safe way to obtain the call count/list....

### Please help keep the CHANGELOG up to date by providing a one sentence summary of your change: Avoid caching errors in AutoRefreshingProvider Fixes #1932

## Bug STS `AutoRefreshingProvider` caches errors and never initiates a reconnect until session expiry ## Expected Behavior Errors are not cached ## Actual Behavior Errors are cached for entire session...

### What does it do? Adds proxy precompile with the following functions: * `addProxy(address delegate, uint8 proxyType, uint32 delay)` * `removeProxy(address delegate, uint8 proxyType, uint32 delay)` * `removeProxies()` * `isProxy(address...

B7-runtimenoteworthy
D9-needsaudit👮

### What does it do? Regenerates solidity contracts with new camelCase params. ### What important points reviewers should know? ### Is there something left for follow-up PRs? ### What alternative...

B0-silent
D2-notlive

### What does it do? Adds a scale helper script to perform storage operations ### 1. Encode Key ```bash $ ./scale.ts key --pallet System --storage Account --key 0x6Df05cBd5113261Dd0f63fb8ce89FC0e236B844e 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da925e08b7dc98ca546e54165137e41c2416df05cbd5113261dd0f63fb8ce89fc0e236b844e ```...

B0-silent
D2-notlive

### What does it do? Raises proper error if `RELAY_WSS_URL` parameter is missing. ### What important points reviewers should know? ### Is there something left for follow-up PRs? ### What...

B0-silent
D2-notlive

### What does it do? adds proxy precompile This PR is for discussion purposes on what to support in the proxy precompile after https://github.com/PureStake/moonbeam/pull/1705. ### What important points reviewers should...

B7-runtimenoteworthy
D1-audited👍
D9-needsaudit👮

## Use Case Given a parent context, using the following code always results in `ChildOfRef`: ```go span, ctx := opentracing.StartSpanFromContext(parentCtx, "foo") ``` I'd however wish to start a `FollowsFromRef` from...