planetmint / planetmint-go

Go implementation of Planetmint
2 stars 0 forks source link

lib/tx: select public key by name or as list element 0 to avoid currently existing deployment blocker #453

Closed eckelj closed 20 hours ago

eckelj commented 3 days ago

The change of ValidatorAddress to not be readable from the conf line implies that the service doesn't know its validator address.

Hence, this needs to be looked up by List or uid (which is the name?)

List() ([]*Record, error)

// Key and KeyByAddress return keys by uid and address, respectively.
Key(uid string) (*Record, error)
KeyByAddress(address sdk.Address) (*Record, error)

Having solved that we can deploy a release again.