Skip to content

Commit

Permalink
[gh-1554] add back uses to action yaml and remove comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Feliciss committed Apr 15, 2024
1 parent 973f085 commit e646c68
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/actions/rust-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ runs:
- run: sudo apt-get update && sudo apt-get install build-essential ca-certificates clang curl git libpq-dev libssl-dev pkg-config lsof lld --no-install-recommends --assume-yes
shell: bash

- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # pin@v1
with:
override: true
components: rustfmt, clippy

- name: install protoc and related tools
shell: bash
run: scripts/dev_setup.sh -b -r
Expand Down
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
3 changes: 1 addition & 2 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[toolchain]
profile = "default"
channel = "stable-2024-03-21" # https://blog.rust-lang.org/2024/03/21/Rust-1.77.0.html
channel = "1.77.1"

0 comments on commit e646c68

Please sign in to comment.