forked from TrueCloudLab/frostfs-contract
[#55] policy: Fix typo in ErrNotAuthorized
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
edf3c26047
commit
7864fc3c4d
2 changed files with 4 additions and 4 deletions
|
@ -23,9 +23,9 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// ErrNotAutorized is returned when the none of the transaction signers
|
// ErrNotAuthorized is returned when the none of the transaction signers
|
||||||
// belongs to the list of autorized keys.
|
// belongs to the list of autorized keys.
|
||||||
ErrNotAutorized = "none of the signers is not autorized to change the contract"
|
ErrNotAuthorized = "none of the signers is authorized to change the contract"
|
||||||
)
|
)
|
||||||
|
|
||||||
// _deploy function sets up initial list of inner ring public keys.
|
// _deploy function sets up initial list of inner ring public keys.
|
||||||
|
@ -55,7 +55,7 @@ func checkAuthorization(ctx storage.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
panic(ErrNotAutorized)
|
panic(ErrNotAuthorized)
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetAdmin(addr interop.Hash160) {
|
func SetAdmin(addr interop.Hash160) {
|
||||||
|
|
|
@ -81,7 +81,7 @@ func TestAutorization(t *testing.T) {
|
||||||
c := e.WithSigners(s)
|
c := e.WithSigners(s)
|
||||||
|
|
||||||
args := []any{policy.Container, "cnr1", "ingress:myrule3", []byte("opaque")}
|
args := []any{policy.Container, "cnr1", "ingress:myrule3", []byte("opaque")}
|
||||||
c.InvokeFail(t, policy.ErrNotAutorized, "addChain", args...)
|
c.InvokeFail(t, policy.ErrNotAuthorized, "addChain", args...)
|
||||||
|
|
||||||
e.Invoke(t, stackitem.Null{}, "setAdmin", s.ScriptHash())
|
e.Invoke(t, stackitem.Null{}, "setAdmin", s.ScriptHash())
|
||||||
e.Invoke(t, stackitem.NewBuffer(s.ScriptHash().BytesBE()), "getAdmin")
|
e.Invoke(t, stackitem.NewBuffer(s.ScriptHash().BytesBE()), "getAdmin")
|
||||||
|
|
Loading…
Reference in a new issue