You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our Storage struct, the type of the last_height field (representing the height of the most recently committed block) is just BlockHeight, but when a chain is first initialized, no block has yet been committed so it would be clearer if this was Option<BlockHeight> and initially None rather than BlockHeight(0) before the first block has been committed (or some other way of refactoring this to be clearer).
The text was updated successfully, but these errors were encountered:
it's kinda puke-y, but because cometBFT uses block height 1 for the first block, we can use 0 for when it's not initialized. This is being done in #1993
* Remove parentId for Ledger
* Refactor sdkStore
sdf
* Pass stored signing_key to sign_tx function to fix signing issues
* Remove SDK store from background
* Clean up spending key storage
* Remove password from SDK calls
* Upgrade to official zondax ledger package
* Fix bad dependency
* Logic to handle xsk or private key
* Add spendingKey back as stringified object for compatiblity
* Update to 0.28.0
* Namada v0.28.0 T->T transfers (anoma#521)
* WIP: Namada v0.28.0 code with T->T transfers working
* fix: update to support unbond tx, clean up
---------
Co-authored-by: Justin R. Evans <jurevans@gmail.com>
---------
Co-authored-by: Eric Corson <13696952+emccorson@users.noreply.github.com>
In our
Storage
struct, the type of thelast_height
field (representing the height of the most recently committed block) is justBlockHeight
, but when a chain is first initialized, no block has yet been committed so it would be clearer if this wasOption<BlockHeight>
and initiallyNone
rather thanBlockHeight(0)
before the first block has been committed (or some other way of refactoring this to be clearer).The text was updated successfully, but these errors were encountered: