Skip to content

Commit

Permalink
Merge #330: fix spend detail: wrong check ready
Browse files Browse the repository at this point in the history
4c68399 fix spend detail: wrong check ready (edouard)

Pull request description:

ACKs for top commit:
  edouardparis:
    Self-ACK 4c68399

Tree-SHA512: d1a336ead055412fbfa08c7c0931b3e9788430e7002d49237f6f115afec3e300c793cc29bcf49c17851a8f75e7a5a6c9c7fded6bc10a7c45a1b1d61e97b0b515
  • Loading branch information
edouardparis committed Feb 6, 2023
2 parents cee3b32 + 4c68399 commit 698dd4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/app/view/spend/detail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ pub fn signatures<'a>(
Container::new(
Row::new()
.push(Space::with_width(Length::Fill))
.push_maybe(if tx.path_ready().is_some() {
.push_maybe(if tx.path_ready().is_none() {
Some(
button::primary(None, "Sign")
.on_press(Message::Spend(SpendTxMessage::Sign))
Expand Down

0 comments on commit 698dd4a

Please sign in to comment.