Skip to content

Commit

Permalink
fix to_bytes need store (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
WGB5445 authored and sanlee42 committed Mar 22, 2023
1 parent 94b0841 commit edd6adb
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/StarcoinFramework/BuildInfo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ compiled_package_info:
? address: "0x00000000000000000000000000000001"
name: YieldFarmingV2
: StarcoinFramework
source_digest: 292D789D77E5CCC4DC7A710845C6751F5308EBD27AECB68680A2DF92F7A057F6
source_digest: 0C27ADDE1700FC588721FE561E620E8D1D4089C818F170BEA1420336042AA318
build_flags:
dev_mode: false
test_mode: false
Expand Down
Binary file modified build/StarcoinFramework/bytecode_modules/Account.mv
Binary file not shown.
Binary file modified build/StarcoinFramework/bytecode_modules/Authenticator.mv
Binary file not shown.
Binary file modified build/StarcoinFramework/bytecode_modules/BCS.mv
Binary file not shown.
Binary file modified build/StarcoinFramework/bytecode_modules/Event.mv
Binary file not shown.
Binary file modified build/StarcoinFramework/bytecode_modules/MerkleNFTDistributor.mv
Binary file not shown.
Binary file modified build/StarcoinFramework/bytecode_modules/StarcoinVerifier.mv
Binary file not shown.
Binary file modified build/StarcoinFramework/bytecode_modules/StructuredHash.mv
Binary file not shown.
4 changes: 2 additions & 2 deletions build/StarcoinFramework/docs/BCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ published on-chain.
Return the binary representation of <code>v</code> in BCS (Starcoin Canonical Serialization) format


<pre><code><b>public</b> <b>fun</b> <a href="BCS.md#0x1_BCS_to_bytes">to_bytes</a>&lt;MoveValue: store&gt;(v: &MoveValue): vector&lt;u8&gt;
<pre><code><b>public</b> <b>fun</b> <a href="BCS.md#0x1_BCS_to_bytes">to_bytes</a>&lt;MoveValue&gt;(v: &MoveValue): vector&lt;u8&gt;
</code></pre>


Expand All @@ -123,7 +123,7 @@ Return the binary representation of <code>v</code> in BCS (Starcoin Canonical Se
<summary>Implementation</summary>


<pre><code><b>native</b> <b>public</b> <b>fun</b> <a href="BCS.md#0x1_BCS_to_bytes">to_bytes</a>&lt;MoveValue: store&gt;(v: &MoveValue): vector&lt;u8&gt;;
<pre><code><b>native</b> <b>public</b> <b>fun</b> <a href="BCS.md#0x1_BCS_to_bytes">to_bytes</a>&lt;MoveValue&gt;(v: &MoveValue): vector&lt;u8&gt;;
</code></pre>


Expand Down
Binary file modified build/StarcoinFramework/source_maps/BCS.mvsm
Binary file not shown.
2 changes: 1 addition & 1 deletion sources/BCS.move
Original file line number Diff line number Diff line change