-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
30 additions
and
31 deletions.
There are no files selected for viewing
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
use athena_vm_sdk::Pubkey; | ||
use parity_scale_codec::{Decode, Encode}; | ||
|
||
#[derive(Encode, Decode)] | ||
pub struct SpawnArguments { | ||
pub required: u8, | ||
pub keys: Vec<Pubkey>, | ||
} | ||
|
||
#[derive(Encode, Decode)] | ||
pub struct Signature { | ||
pub id: u8, | ||
pub sig: [u8; 64], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters