From 5b78a7bc19aec0b7769badf5955a754c6bad774a Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 6 Jun 2019 15:48:01 +0100 Subject: [PATCH] Merge PR #4500: Remove unnecessary auth dependency from the server package --- server/mock/tx.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/server/mock/tx.go b/server/mock/tx.go index 750d6984d2..6774fb2814 100644 --- a/server/mock/tx.go +++ b/server/mock/tx.go @@ -6,7 +6,6 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/x/auth" ) // An sdk.Tx which is its own sdk.Msg. @@ -56,10 +55,6 @@ func (tx kvstoreTx) GetSigners() []sdk.AccAddress { return nil } -func (tx kvstoreTx) GetSignatures() []auth.StdSignature { - return nil -} - // takes raw transaction bytes and decodes them into an sdk.Tx. An sdk.Tx has // all the signatures and can be used to authenticate. func decodeTx(txBytes []byte) (sdk.Tx, sdk.Error) {