File tree 5 files changed +7
-8
lines changed
5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,19 @@ COPY ./go.mod ./go.sum ./
15
15
# Read the CI_ACCESS_TOKEN from the .env file
16
16
ARG CI_ACCESS_TOKEN
17
17
RUN git config --global url."https://olegfomenkodev:${CI_ACCESS_TOKEN}@github.com/" .insteadOf "https://github.com/"
18
+
18
19
COPY . .
19
20
20
21
RUN go mod vendor
21
- RUN go build -mod=vendor -o /usr/local/bin/bdjuno /go/src/github.com/forbole/callisto/cmd/bdjuno
22
+ RUN go build -mod=vendor -o /usr/local/bin/callisto /go/src/github.com/forbole/callisto/cmd/bdjuno
22
23
23
24
24
25
FROM alpine:3.9
25
26
26
- COPY --from=buildbase /usr/local/bin/bdjuno /usr/local/bin/bdjuno
27
+ COPY --from=buildbase /usr/local/bin/callisto /usr/local/bin/callisto
27
28
28
29
RUN apk add --no-cache ca-certificates
29
30
30
31
COPY ./genesis.json /genesis/genesis.json
31
32
32
- ENTRYPOINT ["bdjuno " ]
33
+ ENTRYPOINT ["callisto " ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package source
2
2
3
3
import (
4
4
sdk "github.com/cosmos/cosmos-sdk/types"
5
+
5
6
"github.com/forbole/bdjuno/v4/types"
6
7
)
7
8
Original file line number Diff line number Diff line change 5
5
bridge "github.com/hyle-team/bridgeless-core/v12/x/bridge/types"
6
6
)
7
7
8
- // handleMsgInsertChain allows to properly handle a MsgRemoveTokenInfo
8
+ // handleMsgInsertChain allows to properly handle a MsgInsertChain
9
9
func (m * Module ) handleMsgInsertChain (_ * juno.Tx , msg * bridge.MsgInsertChain ) error {
10
10
return m .db .SaveBridgeChain (
11
11
msg .Chain .Id ,
Original file line number Diff line number Diff line change 6
6
"github.com/pkg/errors"
7
7
)
8
8
9
- // handleMsgSend allows to properly handle a MsgSend
9
+ // handleMsgWithdrawal allows to properly handle a MsgWithdrawal
10
10
func (m * Module ) handleMsgWithdrawal (tx * juno.Tx , msg * nft.MsgWithdrawal ) error {
11
11
nft , ok := m .keeper .GetNFT (msg .Address , tx .Height )
12
12
if ! ok {
You can’t perform that action at this time.
0 commit comments