From d30ea525a2423bb0924d0783a7aa867ce9c36d35 Mon Sep 17 00:00:00 2001 From: Dmitry S <11892559+swift1337@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:48:59 +0100 Subject: [PATCH] Address PR comments --- zetaclient/chains/solana/signer/signer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zetaclient/chains/solana/signer/signer.go b/zetaclient/chains/solana/signer/signer.go index 560a08d2ca..9100f5c628 100644 --- a/zetaclient/chains/solana/signer/signer.go +++ b/zetaclient/chains/solana/signer/signer.go @@ -259,7 +259,7 @@ func (signer *Signer) prepareWhitelistTx( // SetGatewayAddress sets the gateway address func (signer *Signer) SetGatewayAddress(address string) { // noop - if address == "" { + if address == "" || signer.gatewayID.String() == address { return }