Skip to content

Commit

Permalink
Merge branch 'tomas/fix-rustdoc' (#442)
Browse files Browse the repository at this point in the history
* tomas/fix-rustdoc:
  changelog: add #442
  rustdoc: fix outdated links
  • Loading branch information
tzemanovic committed Sep 8, 2022
2 parents 9ef7e84 + d7c4a33 commit f82c253
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .changelog/unreleased/bug-fixes/419-fix-rustdoc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix the rustdoc build. ([#419](https://github.com/anoma/namada/issues/419))
4 changes: 2 additions & 2 deletions apps/src/lib/node/ledger/shell/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//! The ledger shell connects the ABCI++ interface with the Anoma ledger app.
//!
//! Any changes applied before [`Shell::finalize_block`] might have to be
//! reverted, so any changes applied in the methods `Shell::prepare_proposal`
//! (ABCI++), [`Shell::process_and_decode_proposal`] must be also reverted
//! reverted, so any changes applied in the methods [`Shell::prepare_proposal`]
//! and [`Shell::process_proposal`] must be also reverted
//! (unless we can simply overwrite them in the next block).
//! More info in <https://github.com/anoma/anoma/issues/362>.
mod finalize_block;
Expand Down
2 changes: 1 addition & 1 deletion apps/src/lib/node/ledger/shell/prepare_proposal.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Implementation of the [`PrepareProposal`] ABCI++ method for the Shell
//! Implementation of the [`RequestPrepareProposal`] ABCI++ method for the Shell
use tendermint_proto::abci::TxRecord;

Expand Down

0 comments on commit f82c253

Please sign in to comment.