Rootul P
Rootul P
It's difficult to see which branches are actively maintained on this repo. If we delete unmaintained branches in Github UI, then we can enable contributors to more easily see the...
Golang has [named return values](https://go.dev/tour/basics/7) so a function can be written with **unnamed return values**: ```golang func parseMsgShares(shares [][]byte) ([]Message, error) { ``` or **named return values** ```golang func parseMsgShares(shares...
We want to remove implicit message sorting here: https://github.com/celestiaorg/celestia-core/blob/60b268964c495926b294e69b488f10a7293f5ace/types/block.go#L1166 Motivation in https://github.com/celestiaorg/celestia-app/issues/595. This issue is blocked on this code being moved to celestia-app
panic: failed to listen on 127.0.0.1:47768: listen tcp 127.0.0.1:47768: bind: address already in use
I'm observing a test flake in CI run: https://github.com/celestiaorg/celestia-core/runs/7750400729?check_suite_focus=true ``` panic: failed to listen on 127.0.0.1:47768: listen tcp 127.0.0.1:47768: bind: address already in use goroutine 1 [running]: github.com/tendermint/tendermint/rpc/jsonrpc.setup() /home/runner/work/celestia-core/celestia-core/rpc/jsonrpc/jsonrpc_test.go:130 +0xd9c...
Warning observed in CI run: https://github.com/celestiaorg/celestia-core/runs/7748919952?check_suite_focus=true ``` Warning: Unexpected input(s) 'skip-go-installation', valid inputs are ['version', 'args', 'working-directory', 'github-token', 'only-new-issues', 'skip-cache', 'skip-pkg-cache', 'skip-build-cache'] ```
## Summary `make install` outputs warnings ## Problem Definition ``` $ make install Makefile:319: warning: overriding commands for target `/Users/rootulp/git/rootulp/celestia/celestia-core/build' Makefile:79: warning: ignoring old commands for target `/Users/rootulp/git/rootulp/celestia/celestia-core/build' ``` ##...
**Describe the bug** Page content scrolls into navbar **To Reproduce** Steps to reproduce the behavior: 1. Go to https://squeeth.opyn.co/ 1. Scroll down **Expected behavior** A. Navbar and page content both...
### Description It seems like Rinkeby will be deprecated. Are there plans to deploy Ethernaut to Goerli or Sepolia? ### Motivation > Keep shadow forking until no client issues, then...
### Implementation ideas With https://github.com/celestiaorg/celestia-node/pull/907 a metrics endpoint can be configured with a command-line flag: `--metrics.endpoint`. However @musalbas raised the concern: > My main concern is that if it's some...
Currently, consumers of solhint will observe warnings like the following when running `yarn install`: ``` (node:7265) Warning: Accessing non-existent property 'INVALID_ALT_NUMBER' of module exports inside circular dependency (node:7265) Warning: Accessing...