Skip to content

Instantly share code, notes, and snippets.

@kseo
Created May 4, 2018 00:26
Show Gist options
  • Save kseo/44d60375458e23eec2bf1e9667c71961 to your computer and use it in GitHub Desktop.
Save kseo/44d60375458e23eec2bf1e9667c71961 to your computer and use it in GitHub Desktop.
TransactionGroup
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