change_default_gas_price
Lutty 3 years ago committed by Leo Chen
parent 8eb8db8ba1
commit 9b9459411b
  1. 5
      pkg/governance/cli.go

@ -210,6 +210,11 @@ func checkPermission(space string, account accounts.Account) bool {
return true
}
if validators == nil {
fmt.Printf("can not check permission, maybe rpc error")
return false
}
if _, ok := validators[address.ToBech32(account.Address)]; ok {
return true
} else {

Loading…
Cancel
Save