rust-bitcoin-unsafe-fast/primitives/src
Tobin C. Harding 727c519efa
Re-export amount from primitives
We are trying to make it so that what ever crate a user uses they see
the same module/type tree (if the module or type exists).

E.g., one can do either of these.

If they use `bitcoin`:

```
use bitcoin::{
    amount, block, fee_rate, weight, merkle_tree, opcodes,
    pow, script, sequence, transaction, witness,
};
```

Or if they use `primitives`:

```
use bitcoin_primitives::{amount, block, fee_rate, weight};
```

The above imports were tested and `amount` was found to be missing.
2024-11-11 14:21:47 +11:00
..
locktime Standardize wording to `constructs a new` 2024-11-05 13:02:26 +00:00
script Replace `creates` with `constructs` 2024-11-05 12:47:28 +00:00
block.rs Standardize wording to `constructs a new` 2024-11-05 13:02:26 +00:00
lib.rs Re-export amount from primitives 2024-11-11 14:21:47 +11:00
merkle_tree.rs Move merkle_tree hash types to primitives 2024-09-25 06:56:24 +10:00
opcodes.rs Standardize wording to `constructs a new` 2024-11-05 13:02:26 +00:00
pow.rs Standardize wording to `constructs a new` 2024-11-05 13:02:26 +00:00
sequence.rs Standardize wording to `constructs a new` 2024-11-05 13:02:26 +00:00
taproot.rs Move taproot hash types to primitives 2024-10-22 13:50:44 +11:00
transaction.rs Move Transaction type to primitives 2024-10-30 12:28:53 +11:00
witness.rs Standardize wording to `constructs a new` 2024-11-05 13:02:26 +00:00