[#1515] adm: Print address in base58 format in morph ape get-admin
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 1m40s
DCO action / DCO (pull_request) Successful in 2m10s
Vulncheck / Vulncheck (pull_request) Successful in 2m35s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m1s
Build / Build Components (pull_request) Successful in 3m12s
Tests and linters / gopls check (pull_request) Successful in 3m28s
Tests and linters / Staticcheck (pull_request) Successful in 3m33s
Tests and linters / Lint (pull_request) Successful in 4m16s
Tests and linters / Tests (pull_request) Successful in 5m8s
Tests and linters / Tests with -race (pull_request) Successful in 6m40s
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 1m40s
DCO action / DCO (pull_request) Successful in 2m10s
Vulncheck / Vulncheck (pull_request) Successful in 2m35s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m1s
Build / Build Components (pull_request) Successful in 3m12s
Tests and linters / gopls check (pull_request) Successful in 3m28s
Tests and linters / Staticcheck (pull_request) Successful in 3m33s
Tests and linters / Lint (pull_request) Successful in 4m16s
Tests and linters / Tests (pull_request) Successful in 5m8s
Tests and linters / Tests with -race (pull_request) Successful in 6m40s
Signed-off-by: George Bartolomey <george@bh4.ru>
This commit is contained in:
parent
1ed7ab75fb
commit
ceb916ce55
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ import (
|
|||
commonCmd "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/internal/common"
|
||||
apeCmd "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/internal/common/ape"
|
||||
apechain "git.frostfs.info/TrueCloudLab/policy-engine/pkg/chain"
|
||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
@ -200,7 +200,7 @@ func listRuleChains(cmd *cobra.Command, _ []string) {
|
|||
|
||||
func setAdmin(cmd *cobra.Command, _ []string) {
|
||||
s, _ := cmd.Flags().GetString(addrAdminFlag)
|
||||
addr, err := util.Uint160DecodeStringLE(s)
|
||||
addr, err := address.StringToUint160(s)
|
||||
commonCmd.ExitOnErr(cmd, "can't decode admin addr: %w", err)
|
||||
pci, ac := newPolicyContractInterface(cmd)
|
||||
h, vub, err := pci.SetAdmin(addr)
|
||||
|
@ -214,7 +214,7 @@ func getAdmin(cmd *cobra.Command, _ []string) {
|
|||
pci, _ := newPolicyContractReaderInterface(cmd)
|
||||
addr, err := pci.GetAdmin()
|
||||
commonCmd.ExitOnErr(cmd, "unable to get admin: %w", err)
|
||||
cmd.Println(addr.StringLE())
|
||||
cmd.Println(address.Uint160ToString(addr))
|
||||
}
|
||||
|
||||
func listTargets(cmd *cobra.Command, _ []string) {
|
||||
|
|
Loading…
Add table
Reference in a new issue