tari icon indicating copy to clipboard operation
tari copied to clipboard

The Tari protocol

Results 111 tari issues
Sort by recently updated
recently updated
newest added

**Describe the bug** As per https://github.com/monero-rs/monero-rs/pull/182

S-high-severity

The build section of tari is out of date in the readme and needs updating

A-documentation

Regarding this code: https://github.com/tari-project/tari/blob/06a02fb07dfba84e6edd1591355d5f1b626438d1/base_layer/key_manager/src/key_manager_service/storage/sqlite_db/key_manager_state.rs#L135 Expected: The SQL update should have a where clause protecting against concurrent writes. If thread1 reads the index, then thread2 reads the index and then thread2...

we need to upgrade tonic 0.6 as it uses webapki 21.0 https://github.com/tari-project/tari/security/dependabot/258

We need to fix the borken ffi tests. These are denoted by "@brokenFFI"

Pending #5252 The wallet can read the network version that last opened it up. If the network does not match, close the wallet with an appropriate error message.

C-enhancement
E-good_first_issue
A-wallet

**Describe the bug** Wallet recovery has an intermittent ``UNIQUE constraint failed: scanned_blocks.header_hash`` error - when connecting to the same node from a clean slate this error sometimes occurs other times...

The wallet uses these statuses to reflect the transaction status, origin etc. ```rust pub enum TransactionStatus { /// This transaction has been completed between the parties but has not been...

The wallet has two functions that do very much the same job, and the utxo scanner calls both in sequence. ```rust ScanForRecoverableOutputs(Vec), ScanOutputs(Vec), ``` We can remove one, and only...

**Describe the bug** If a peer has connected via Tor previously, asking it to connect via TCP/IP on subsequent connection requests is ignored. **To Reproduce** Steps to reproduce the behavior:...

C-bug