Compare commits

..

No commits in common. "4047d10ed4056c2828206cb58d424650f4f9c430" and "2d44d0ba4d5e0776f853c80e5791ea11a7a9f2b1" have entirely different histories.

View File

@ -2,7 +2,6 @@ package bundle
import ( import (
"context" "context"
"encoding/json"
"errors" "errors"
"fmt" "fmt"
"fonchain-fiee/api/bundle" "fonchain-fiee/api/bundle"
@ -395,7 +394,5 @@ func GetBalanceLayout(ctx *gin.Context) {
service.Error(ctx, err) service.Error(ctx, err)
return return
} }
var j any service.Success(ctx, res.Data)
json.Unmarshal([]byte(res.Data), &j)
service.Success(ctx, j)
} }