Skip to content

Commit

Permalink
chore(release): v0.1.7-pre.6
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Sep 3, 2024
1 parent f88a3b2 commit 8eee3d0
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 50 deletions.
92 changes: 53 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "xtrgpuminer"
version = "0.1.7-pre.5"
version = "0.1.7-pre.6"
edition = "2021"


[dependencies]
tari_core = { git = "https://github.com/tari-project/tari", tag = "v1.3.0-pre.0", default-features = false, features = [
tari_core = { git = "https://github.com/tari-project/tari", tag = "v1.3.1-pre.1", default-features = false, features = [
"transactions",
] }

minotari_app_grpc = { git = "http://github.com/tari-project/tari", tag = "v1.3.0-pre.0" }
tari_common_types = { git = "http://github.com/tari-project/tari", tag = "v1.3.0-pre.0" }
tari_common = { git = "http://github.com/tari-project/tari", tag = "v1.3.0-pre.0" }
tari_script = { git = "http://github.com/tari-project/tari", tag = "v1.3.0-pre.0" }
tari_key_manager = { git = "http://github.com/tari-project/tari", tag = "v1.3.0-pre.0" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v1.3.0-pre.0" }
minotari_app_grpc = { git = "http://github.com/tari-project/tari", tag = "v1.3.1-pre.1" }
tari_common_types = { git = "http://github.com/tari-project/tari", tag = "v1.3.1-pre.1" }
tari_common = { git = "http://github.com/tari-project/tari", tag = "v1.3.1-pre.1" }
tari_script = { git = "http://github.com/tari-project/tari", tag = "v1.3.1-pre.1" }
tari_key_manager = { git = "http://github.com/tari-project/tari", tag = "v1.3.1-pre.1" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v1.3.1-pre.1" }
tari_crypto = { version = "0.20.3", features = ["borsh"] }
tari_utilities = "0.7"
serde = { version = "1.0.130", features = ["derive"] }
Expand Down
8 changes: 5 additions & 3 deletions src/tari_coinbase.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use rand::rngs::OsRng;
use tari_common_types::{tari_address::TariAddress, types::PublicKey, MaxSizeBytes};
use tari_common_types::{tari_address::TariAddress, types::PublicKey};
use tari_core::{
consensus::ConsensusConstants,
one_sided::{
Expand All @@ -9,7 +9,9 @@ use tari_core::{
transactions::{
key_manager::{MemoryDbKeyManager, TariKeyId, TransactionKeyManagerBranch, TransactionKeyManagerInterface},
tari_amount::MicroMinotari,
transaction_components::{RangeProofType, Transaction, TransactionKernel, TransactionOutput, WalletOutput},
transaction_components::{
CoinBaseExtra, RangeProofType, Transaction, TransactionKernel, TransactionOutput, WalletOutput,
},
CoinbaseBuildError, CoinbaseBuilder,
},
};
Expand All @@ -34,7 +36,7 @@ pub async fn generate_coinbase(
fee,
reward,
height,
&MaxSizeBytes::from_bytes_checked(extra).unwrap(),
&CoinBaseExtra::from_bytes_checked(extra).unwrap(),
key_manager,
&script_key_id,
wallet_payment_address,
Expand Down

0 comments on commit 8eee3d0

Please sign in to comment.