Skip to content

Commit

Permalink
update tendermint client to not prune light blocks (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-axner authored Feb 26, 2021
1 parent f201839 commit 47b80d1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions relayer/tm-light-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ func (c *Chain) LightClientWithoutTrust(db dbm.DB) (*light.Client, error) {
// NOTE: This requires adding them to the chain config
[]lightp.Provider{prov},
dbs.New(db, ""),
logger)
logger,
light.PruningSize(0),
)
}

// LightClientWithTrust takes a header from the chain and attempts to add that header to the light
Expand All @@ -144,7 +146,9 @@ func (c *Chain) LightClientWithTrust(db dbm.DB, to light.TrustOptions) (*light.C
// NOTE: This requires adding them to the chain config
[]lightp.Provider{prov},
dbs.New(db, ""),
logger)
logger,
light.PruningSize(0),
)
}

// LightClient initializes the light client for a given chain from the trusted store in the database
Expand Down

0 comments on commit 47b80d1

Please sign in to comment.