Matthew Sevey
Matthew Sevey
> @MSevey looks like some repo secrets/config need to be configured for this to proceed please Progress! New bugs. @Bidon15 it looks like the login details aren't working for dockerhub...
@ramin pushed a fix 👍
> @MSevey we'll just need to adjust the required checks config in admin when we merge this, i'll coordinate with you another bug found when app merged in. fixed here:...
updated with latest release. see release notes: https://github.com/celestiaorg/.github/releases/tag/v0.3.2
Test methods can only be accessed within the same package. https://github.com/golang/go/issues/31135 I believe the advice around defining exports in a test package only really applies to Functions which can live...
The alternative would be to define an interface that can then be accessed within the tests. However the interface itself would still be defined within the production code. Due to...
Progress on storage upgrades here: https://github.com/celestiaorg/celestia-node/issues/2971
hey @raadhshenshahhaseeb this issues is actually a little outdated, I just removed the good first issue label since this refers to code that is no longer on the main branch,...
another potentially useful api trigger is grabbing the current stack ```go // Get the stack traces of all running goroutines. stack := make([]byte, 64e6) n := runtime.Stack(stack, true) ```
> Another idea @MSevey is to add similar API for on-demand profiling here is how we implemented it in skyd if you want to copy paste. https://gitlab.com/SkynetLabs/skyd/-/blob/master/node/api/daemon.go#L257