Skip to content

Commit

Permalink
DA-515 Explicit signer image instead of using FF manifest
Browse files Browse the repository at this point in the history
Signed-off-by: Dzianis Andreyenka <[email protected]>
  • Loading branch information
denisandreenko committed Oct 25, 2023
1 parent 58f681a commit 5e99b8f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion internal/blockchain/tezos/tezossigner/tezossigner.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (p *TezosSignerProvider) GetDockerServiceDefinition(rpcURL string) *docker.
return &docker.ServiceDefinition{
ServiceName: "tezossigner",
Service: &docker.Service{
Image: p.stack.VersionManifest.TezosSigner.GetDockerImageString(),
Image: "ecadlabs/signatory",
ContainerName: fmt.Sprintf("%s_tezossigner", p.stack.Name),
User: "root",
Command: "-c /etc/signatory.yaml --base-dir /data",
Expand Down
2 changes: 0 additions & 2 deletions pkg/types/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ type VersionManifest struct {
TokensERC1155 *ManifestEntry `json:"tokens-erc1155"`
TokensERC20ERC721 *ManifestEntry `json:"tokens-erc20-erc721"`
Signer *ManifestEntry `json:"signer"`
TezosSigner *ManifestEntry `json:"tezossigner"`
}

func (m *VersionManifest) Entries() []*ManifestEntry {
Expand All @@ -49,7 +48,6 @@ func (m *VersionManifest) Entries() []*ManifestEntry {
m.TokensERC1155,
m.TokensERC20ERC721,
m.Signer,
m.TezosSigner,
}
}

Expand Down

0 comments on commit 5e99b8f

Please sign in to comment.