Skip to content

Commit

Permalink
Update signer hostname
Browse files Browse the repository at this point in the history
Signed-off-by: Dzianis Andreyenka <andreenkodn@gmail.com>
  • Loading branch information
denisandreenko committed Oct 23, 2023
1 parent c1c550c commit 1bdc889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/blockchain/tezos/connector/tezosconnect/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (c *Config) WriteConfig(filename string, extraTezosconnectConfigPath string
return nil
}

func (t *Tezosconnect) GenerateConfig(stack *types.Stack, org *types.Organization, blockchainServiceName, rpcURL string) connector.Config {
func (t *Tezosconnect) GenerateConfig(stack *types.Stack, org *types.Organization, signerHostname, rpcURL string) connector.Config {
confirmations := new(int)
*confirmations = 0
var metrics *types.MetricsServerConfig
Expand Down Expand Up @@ -129,7 +129,7 @@ func (t *Tezosconnect) GenerateConfig(stack *types.Stack, org *types.Organizatio
Blockchain: &BlockchainConfig{
Network: network,
RPC: rpcURL,
Signatory: fmt.Sprintf("http://%s:6732", blockchainServiceName),
Signatory: fmt.Sprintf("http://%s:6732", signerHostname),
},
},
Persistence: &PersistenceConfig{
Expand Down

0 comments on commit 1bdc889

Please sign in to comment.