diff --git a/code/go/0chain.net/smartcontract/storagesc/handler.go b/code/go/0chain.net/smartcontract/storagesc/handler.go index a89983f6d0..caf2b5caa8 100644 --- a/code/go/0chain.net/smartcontract/storagesc/handler.go +++ b/code/go/0chain.net/smartcontract/storagesc/handler.go @@ -905,7 +905,10 @@ func (srh *StorageRestHandler) getUserStakePoolStat(w http.ResponseWriter, r *ht var dps = stakepool.DelegatePoolStat{ ID: pool.PoolID, DelegateID: pool.DelegateID, - Status: spenum.PoolStatus(pool.Status).String(), + UnStake: false, + ProviderId: pool.ProviderID, + ProviderType: pool.ProviderType, + Status: pool.Status.String(), RoundCreated: pool.RoundCreated, StakedAt: pool.StakedAt, }