コード例 #1
0
ファイル: Transaction.cs プロジェクト: Nethereum/Nethereum
 public Transaction(string to, BigInteger amount, BigInteger nonce, BigInteger gasPrice,
     BigInteger gasLimit, string data) : this(nonce.ToBytesForRLPEncoding(), gasPrice.ToBytesForRLPEncoding(),
     gasLimit.ToBytesForRLPEncoding(), to.HexToByteArray(), amount.ToBytesForRLPEncoding(), data.HexToByteArray()
 )
 {
 }