Skip to content

Commit

Permalink
refactor: minor nakamoto improvements (#1327)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard authored Jan 23, 2024
1 parent c2fa0fb commit dd51ea9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/clarinet-files/src/network_manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub const DEFAULT_DERIVATION_PATH: &str = "m/44'/5757'/0'/0/0";
pub const DEFAULT_STACKS_NODE_IMAGE: &str = "quay.io/hirosystems/stacks-node:devnet-2.4.0.0.0";
pub const DEFAULT_STACKS_API_IMAGE: &str = "hirosystems/stacks-blockchain-api:latest";
// Nakamoto images overrides
pub const DEFAULT_STACKS_NODE_IMAGE_NAKA: &str = "blockstack/stacks-blockchain:next-devnet";
pub const DEFAULT_STACKS_NODE_IMAGE_NAKA: &str = "blockstack/stacks-blockchain:feat-devnet-tweaks";
pub const DEFAULT_STACKS_API_IMAGE_NAKA: &str = "hirosystems/stacks-blockchain-api:nakamoto";

pub const DEFAULT_BITCOIN_NODE_IMAGE: &str = "quay.io/hirosystems/bitcoind:26.0";
Expand Down
6 changes: 3 additions & 3 deletions components/stacks-network/src/ui/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ impl<'a> App<'a> {
"{}[{}{}]{}",
end, block.block_identifier.index, has_tx, start
),
if has_tenure_change_tx {
Style::default().fg(Color::LightBlue)
} else {
if has_coinbase_tx {
Style::default().fg(Color::Green)
} else {
Style::default().fg(Color::LightBlue)
},
));

Expand Down

0 comments on commit dd51ea9

Please sign in to comment.