Add gas charge for VerifyReplicaUpdate
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
parent
6ff889c8d6
commit
736fb5c5b0
@ -209,6 +209,8 @@ var Prices = map[abi.ChainEpoch]Pricelist{
|
||||
},
|
||||
verifyPostDiscount: false,
|
||||
verifyConsensusFault: 495422,
|
||||
|
||||
verifyReplicaUpdate: 36316136,
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -120,6 +120,8 @@ type pricelistV0 struct {
|
||||
verifyPostLookup map[abi.RegisteredPoStProof]scalingCost
|
||||
verifyPostDiscount bool
|
||||
verifyConsensusFault int64
|
||||
|
||||
verifyReplicaUpdate int64
|
||||
}
|
||||
|
||||
var _ Pricelist = (*pricelistV0)(nil)
|
||||
@ -229,8 +231,7 @@ func (pl *pricelistV0) OnVerifyAggregateSeals(aggregate proof7.AggregateSealVeri
|
||||
|
||||
// OnVerifyReplicaUpdate
|
||||
func (pl *pricelistV0) OnVerifyReplicaUpdate(update proof7.ReplicaUpdateInfo) GasCharge {
|
||||
// TODO: do the thing
|
||||
return GasCharge{}
|
||||
return newGasCharge("OnVerifyReplicaUpdate", pl.verifyReplicaUpdate, 0)
|
||||
}
|
||||
|
||||
// OnVerifyPost
|
||||
|
Loading…
Reference in New Issue
Block a user