core: use declared constant for Notary's verification price
This constant is used from the outside, it should be synced with the real verification price.
This commit is contained in:
parent
7896ef0640
commit
2bb8537151
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ func newNotary() *Notary {
|
|||
|
||||
desc = newDescriptor("verify", smartcontract.BoolType,
|
||||
manifest.NewParameter("signature", smartcontract.SignatureType))
|
||||
md = newMethodAndPrice(n.verify, 100_0000, callflag.ReadStates)
|
||||
md = newMethodAndPrice(n.verify, NotaryVerificationPrice, callflag.ReadStates)
|
||||
n.AddMethod(md, desc)
|
||||
|
||||
desc = newDescriptor("getMaxNotValidBeforeDelta", smartcontract.IntegerType)
|
||||
|
|
Loading…
Reference in a new issue