We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e394db3 commit eb2147eCopy full SHA for eb2147e
framework/components/blockchain/tron.go
@@ -114,12 +114,16 @@ func newTron(in *Input) (*Output, error) {
114
Started: true,
115
})
116
if err != nil {
117
- return nil, err
+ return &Output{
118
+ Container: c,
119
+ }, err
120
}
121
122
host, err := c.Host(ctx)
123
124
125
126
127
128
129
return &Output{
@@ -128,6 +132,7 @@ func newTron(in *Input) (*Output, error) {
132
Type: in.Type,
133
Family: FamilyTron,
130
134
ContainerName: containerName,
135
131
136
Nodes: []*Node{
137
{
138
ExternalHTTPUrl: fmt.Sprintf("http://%s:%s", host, in.Port),
0 commit comments