Skip to content

Commit

Permalink
fix import path
Browse files Browse the repository at this point in the history
  • Loading branch information
steelgeek091 committed Apr 15, 2024
1 parent 45331ac commit 641ffc6
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions frameworks/bitcoin-move/doc/utxo.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
- [Resource `UTXO`](#0x4_utxo_UTXO)
- [Struct `UTXOSeal`](#0x4_utxo_UTXOSeal)
- [Resource `BitcoinUTXOStore`](#0x4_utxo_BitcoinUTXOStore)
- [Struct `CreatingUTXOEvent`](#0x4_utxo_CreatingUTXOEvent)
- [Struct `RemovingUTXOEvent`](#0x4_utxo_RemovingUTXOEvent)
- [Struct `TempState`](#0x4_utxo_TempState)
- [Constants](#@Constants_0)
- [Function `genesis_init`](#0x4_utxo_genesis_init)
Expand Down Expand Up @@ -41,6 +43,7 @@

<pre><code><b>use</b> <a href="">0x1::string</a>;
<b>use</b> <a href="">0x2::bag</a>;
<b>use</b> <a href="">0x2::event</a>;
<b>use</b> <a href="">0x2::object</a>;
<b>use</b> <a href="">0x2::simple_multimap</a>;
<b>use</b> <a href="">0x2::type_info</a>;
Expand Down Expand Up @@ -83,6 +86,30 @@ The UTXO Object



<a name="0x4_utxo_CreatingUTXOEvent"></a>

## Struct `CreatingUTXOEvent`

Event for creating UTXO


<pre><code><b>struct</b> <a href="utxo.md#0x4_utxo_CreatingUTXOEvent">CreatingUTXOEvent</a> <b>has</b> drop, store
</code></pre>



<a name="0x4_utxo_RemovingUTXOEvent"></a>

## Struct `RemovingUTXOEvent`

Event for remove UTXO


<pre><code><b>struct</b> <a href="utxo.md#0x4_utxo_RemovingUTXOEvent">RemovingUTXOEvent</a> <b>has</b> drop, store
</code></pre>



<a name="0x4_utxo_TempState"></a>

## Struct `TempState`
Expand Down
2 changes: 1 addition & 1 deletion frameworks/moveos-stdlib/src/natives/moveos_stdlib/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ use move_vm_types::{
pop_arg,
values::{Value, VectorRef},
};
use moveos_stdlib::args_count_error;
use smallvec::smallvec;
use std::collections::VecDeque;
use crate::args_count_error;

fn hash<H: HashFunction<DIGEST_SIZE>, const DIGEST_SIZE: usize>(
gas_params: &FromBytesGasParameters,
Expand Down

0 comments on commit 641ffc6

Please sign in to comment.