Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Fix docs re bytes for compiled_abis in CompiledPackage #987

Open
wants to merge 1 commit into
base: aptos-main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pub struct CompiledPackage {
//
/// filename -> doctext
pub compiled_docs: Option<Vec<(String, String)>>,
/// filename -> json bytes for ScriptABI. Can then be used to generate transaction builders in
/// filename -> BCS bytes for ScriptABI. Can then be used to generate transaction builders in
/// various languages.
pub compiled_abis: Option<Vec<(String, Vec<u8>)>>,
}
Expand Down