Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
expressive (#6337)
- Removed affirmation maps logic throughout, upgrading chainstate DB schema to 11 and burnchain DB schema to 3 (#6314)

### Changed
### Fixed

- When running `stacks-inspect decode-tx`, print the correct version of the address (mainnet or testnet) based on the transaction passed in
- When a contract deploy is analyzed, it will no longer throw a `CostError` when the contract contains an undefined top-level variable. Instead, it will throw a `UndefinedVariable` error.

## [3.2.0.0.1]
Expand Down
5 changes: 3 additions & 2 deletions stackslib/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,10 @@ fn main() {
.unwrap();

println!("Verified: {:#?}", tx.verify());
println!("Address: {}", tx.auth.origin().address_mainnet());
let address = tx.auth.origin().get_address(tx.is_mainnet());
println!("Address: {address}");

println!("{:#?}", &tx);
println!("{tx:#?}");
process::exit(0);
}

Expand Down
Loading