]> Untitled Git - bdk/commit
Use Psbt instead of PSBT
authorTobin Harding <me@tobin.cc>
Fri, 7 May 2021 00:25:45 +0000 (10:25 +1000)
committerAlekos Filini <alekos.filini@gmail.com>
Fri, 7 May 2021 14:29:50 +0000 (16:29 +0200)
commitaa3707b5b4b765e17e20f7a147861ade1e695f2e
tree355f58f941430eb666aee010d13314d8bc7f6594
parentf6631e35b8c296fcce6d557cfcb98a4cc554e90e
Use Psbt instead of PSBT

Idiomatic Rust uses lowercase for acronyms for all characters after the
first e.g. `std::net::TcpStream`. PSBT (Partially Signed Bitcoin
Transaction) should be rendered `Psbt` in Rust code if we want to write
idiomatic Rust.

Use `Psbt` instead of `PSBT` when aliasing the import of
`PartiallySignedTransaction` from `bitcoin` library.
src/descriptor/policy.rs
src/psbt/mod.rs
src/wallet/mod.rs
src/wallet/tx_builder.rs