Merge pull request #11 from nspcc-dev/neo3/bind

Add "Bind" and "Unbind" methods
enable-notary-in-public-chains
Alex Vanin 2020-07-16 14:11:49 +03:00 committed by GitHub
commit f5d2e96063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -35,6 +35,7 @@ const (
candidatesKey = "candidates"
cashedChequesKey = "cheques"
blockDiff = 20 // change base on performance evaluation
publicKeySize = 33
)
func Main(op string, args []interface{}) interface{} {
@ -228,6 +229,29 @@ func Main(op string, args []interface{}) interface{} {
runtime.Notify("Cheque", id, user, amount, lockAcc)
}
return true
case "Bind", "Unbind":
if len(args) < 2 {
panic("binding: bad arguments")
}
user := args[0].([]byte)
if !runtime.CheckWitness(user) {
panic("binding: you should be the owner of the wallet")
}
var keys [][]byte
for i := 1; i < len(args); i++ {
pub := args[i].([]byte)
if len(pub) != publicKeySize {
panic("binding: incorrect public key size")
}
keys = append(keys, pub)
}
runtime.Notify(op, user, keys)
return true
case "InnerRingUpdate":
data := args[0].([]byte)