[#170] Add alphabet vote invocation method
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
6cddc91cbf
commit
d02c24db5c
1 changed files with 12 additions and 0 deletions
|
@ -1,12 +1,14 @@
|
||||||
package invoke
|
package invoke
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||||
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
emitMethod = "emit"
|
emitMethod = "emit"
|
||||||
|
voteMethod = "vote"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AlphabetEmit invokes emit method on alphabet contract.
|
// AlphabetEmit invokes emit method on alphabet contract.
|
||||||
|
@ -18,3 +20,13 @@ func AlphabetEmit(cli *client.Client, con util.Uint160) error {
|
||||||
// there is no signature collecting, so we don't need extra fee
|
// there is no signature collecting, so we don't need extra fee
|
||||||
return cli.Invoke(con, 0, emitMethod)
|
return cli.Invoke(con, 0, emitMethod)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AlphabetVote invokes vote method on alphabet contract.
|
||||||
|
func AlphabetVote(cli *client.Client, con util.Uint160, key keys.PublicKey) error {
|
||||||
|
if cli == nil {
|
||||||
|
return client.ErrNilClient
|
||||||
|
}
|
||||||
|
|
||||||
|
// there is no signature collecting, so we don't need extra fee
|
||||||
|
return cli.Invoke(con, 0, voteMethod, key.Bytes())
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue