Skip to content

Commit

Permalink
Merge pull request #32 from irisnet/zx/remove_cache
Browse files Browse the repository at this point in the history
add remove local sequence cache interface
  • Loading branch information
prolenking authored Nov 17, 2022
2 parents bf2dbb8 + fd14467 commit 4e406b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/base_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ func NewBaseClient(cfg sdktypes.ClientConfig, encodingConfig sdktypes.EncodingCo
return &base
}

func (a *baseClient) RemoveCache(address string) bool {
return a.removeCache(address)
func (base *baseClient) RemoveCache(address string) bool {
return base.removeCache(address)
}

func (base *baseClient) Logger() log.Logger {
Expand Down

0 comments on commit 4e406b8

Please sign in to comment.