diff --git a/x/leverage/keeper/inspector.go b/x/leverage/keeper/inspector.go index 6df0323446..7c9714a7a0 100644 --- a/x/leverage/keeper/inspector.go +++ b/x/leverage/keeper/inspector.go @@ -175,7 +175,7 @@ func (q Querier) InspectAccount( Collateral: symbolDecCoins(collateral, exchangeRates), Borrowed: symbolDecCoins(borrowed, exchangeRates), }, - Info: position.String() + "\n\n" + borrowPosition.String(), + Info: fmt.Sprint(position.String(), "\n", borrowPosition.String()) } return &types.QueryInspectAccountResponse{Borrower: account}, nil