Skip to content

Commit 1630490

Browse files
committed
run tidy
1 parent 7905c40 commit 1630490

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ require (
3030
github.com/kylelemons/godebug v1.1.0
3131
github.com/lib/pq v1.10.9
3232
github.com/marcboeker/go-duckdb v1.8.5
33+
github.com/mr-tron/base58 v1.2.0
3334
github.com/pelletier/go-toml v1.9.5
3435
github.com/pelletier/go-toml/v2 v2.2.4
3536
github.com/prometheus/client_golang v1.22.0
@@ -125,7 +126,6 @@ require (
125126
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
126127
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
127128
github.com/modern-go/reflect2 v1.0.2 // indirect
128-
github.com/mr-tron/base58 v1.2.0 // indirect
129129
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
130130
github.com/oklog/run v1.2.0 // indirect
131131
github.com/pierrec/lz4/v4 v4.1.22 // indirect

pkg/types/relayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ func (u *UnimplementedRelayer) TON() (TONService, error) {
350350
}
351351

352352
func (u *UnimplementedRelayer) Solana() (SolanaService, error) {
353-
return nil, status.Errorf(codes.Unimplemented, "method TON not implemented")
353+
return nil, status.Errorf(codes.Unimplemented, "method Solana not implemented")
354354
}
355355

356356
func (u *UnimplementedRelayer) NewContractWriter(ctx context.Context, config []byte) (ContractWriter, error) {

0 commit comments

Comments
 (0)