Merge pull request #9461 from simlecode/fix/missing-perm-tag
fix: missing permissions tag
This commit is contained in:
commit
59e80ae951
@ -533,7 +533,7 @@ type FullNode interface {
|
|||||||
// StateMarketStorageDeal returns information about the indicated deal
|
// StateMarketStorageDeal returns information about the indicated deal
|
||||||
StateMarketStorageDeal(context.Context, abi.DealID, types.TipSetKey) (*api.MarketDeal, error) //perm:read
|
StateMarketStorageDeal(context.Context, abi.DealID, types.TipSetKey) (*api.MarketDeal, error) //perm:read
|
||||||
// StateGetAllocationForPendingDeal returns the allocation for a given deal ID of a pending deal.
|
// StateGetAllocationForPendingDeal returns the allocation for a given deal ID of a pending deal.
|
||||||
StateGetAllocationForPendingDeal(ctx context.Context, dealId abi.DealID, tsk types.TipSetKey) (*verifregtypes.Allocation, error)
|
StateGetAllocationForPendingDeal(ctx context.Context, dealId abi.DealID, tsk types.TipSetKey) (*verifregtypes.Allocation, error) //perm:read
|
||||||
// StateGetAllocation returns the allocation for a given address and allocation ID.
|
// StateGetAllocation returns the allocation for a given address and allocation ID.
|
||||||
StateGetAllocation(ctx context.Context, clientAddr address.Address, allocationId verifregtypes.AllocationId, tsk types.TipSetKey) (*verifregtypes.Allocation, error) //perm:read
|
StateGetAllocation(ctx context.Context, clientAddr address.Address, allocationId verifregtypes.AllocationId, tsk types.TipSetKey) (*verifregtypes.Allocation, error) //perm:read
|
||||||
// StateLookupID retrieves the ID address of the given address
|
// StateLookupID retrieves the ID address of the given address
|
||||||
|
@ -280,7 +280,7 @@ type FullNodeStruct struct {
|
|||||||
|
|
||||||
StateGetAllocation func(p0 context.Context, p1 address.Address, p2 verifregtypes.AllocationId, p3 types.TipSetKey) (*verifregtypes.Allocation, error) `perm:"read"`
|
StateGetAllocation func(p0 context.Context, p1 address.Address, p2 verifregtypes.AllocationId, p3 types.TipSetKey) (*verifregtypes.Allocation, error) `perm:"read"`
|
||||||
|
|
||||||
StateGetAllocationForPendingDeal func(p0 context.Context, p1 abi.DealID, p2 types.TipSetKey) (*verifregtypes.Allocation, error) ``
|
StateGetAllocationForPendingDeal func(p0 context.Context, p1 abi.DealID, p2 types.TipSetKey) (*verifregtypes.Allocation, error) `perm:"read"`
|
||||||
|
|
||||||
StateGetNetworkParams func(p0 context.Context) (*api.NetworkParams, error) `perm:"read"`
|
StateGetNetworkParams func(p0 context.Context) (*api.NetworkParams, error) `perm:"read"`
|
||||||
|
|
||||||
|
@ -5285,7 +5285,7 @@ Response:
|
|||||||
StateGetAllocationForPendingDeal returns the allocation for a given deal ID of a pending deal.
|
StateGetAllocationForPendingDeal returns the allocation for a given deal ID of a pending deal.
|
||||||
|
|
||||||
|
|
||||||
Perms:
|
Perms: read
|
||||||
|
|
||||||
Inputs:
|
Inputs:
|
||||||
```json
|
```json
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
|
|
||||||
"github.com/filecoin-project/go-address"
|
"github.com/filecoin-project/go-address"
|
||||||
"github.com/filecoin-project/go-state-types/abi"
|
"github.com/filecoin-project/go-state-types/abi"
|
||||||
market8 "github.com/filecoin-project/go-state-types/builtin/v9/market"
|
markettypes "github.com/filecoin-project/go-state-types/builtin/v9/market"
|
||||||
"github.com/filecoin-project/go-state-types/network"
|
"github.com/filecoin-project/go-state-types/network"
|
||||||
|
|
||||||
"github.com/filecoin-project/lotus/chain/types"
|
"github.com/filecoin-project/lotus/chain/types"
|
||||||
@ -25,7 +25,7 @@ type PreSeal struct {
|
|||||||
CommR cid.Cid
|
CommR cid.Cid
|
||||||
CommD cid.Cid
|
CommD cid.Cid
|
||||||
SectorID abi.SectorNumber
|
SectorID abi.SectorNumber
|
||||||
Deal market8.DealProposal
|
Deal markettypes.DealProposal
|
||||||
DealClientKey types.KeyInfo
|
DealClientKey types.KeyInfo
|
||||||
ProofType abi.RegisteredSealProof
|
ProofType abi.RegisteredSealProof
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user