Context
From internal/cosmos-sdk/justfile
test:
#!/usr/bin/env bash
go test ./x/...
go test ./baseapp/...
# FIXME: Fails due to ledger error. This was not fixed in t# cosmos-sdk.
# We'll need to do it here in order to run the tests for the entire repo.
# go test ./types/...
To fix, work on debugging from
cd internal/cosmos-sdk
go test ./types/... 2>&1
Context
From internal/cosmos-sdk/justfile
To fix, work on debugging from