]> Untitled Git - bdk/commit
Remove useless question mark operator
authorTobin Harding <me@tobin.cc>
Tue, 9 Feb 2021 23:20:06 +0000 (10:20 +1100)
committerTobin Harding <me@tobin.cc>
Wed, 24 Feb 2021 02:30:48 +0000 (13:30 +1100)
commit24df438607bcf58c5304b6c2976b4d70ce6a6716
tree85fcfd3483544615e888856bbe9186ec7f68945e
parentcb3b8cf21b6bb48d3b28c9e98df06464823bdcb0
Remove useless question mark operator

Clippy emits:

  warning: Question mark operator is useless here

No need to use the `?` operator inside an `Ok()` statement when
returning, just return directly.
src/blockchain/compact_filters/store.rs
src/descriptor/template.rs
src/keys/mod.rs