Created
May 4, 2018 00:26
-
-
Save kseo/44d60375458e23eec2bf1e9667c71961 to your computer and use it in GitHub Desktop.
TransactionGroup
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
pub struct TransactionGroup { | |
/// Nonce. | |
pub nonce: U256, | |
/// Amount of CCC to be paid as a cost for distributing these transactions to the network. | |
pub fee: U256, | |
/// Transactions | |
pub transactions: Vec<Transaction>, | |
/// Mainnet or Testnet | |
pub network_id: u64, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment