Coverage Summary for Class: CallCreate (org.ethereum.vm)

Class Class, % Method, % Line, %
CallCreate 0% (0/1) 0% (0/5) 0% (0/9)


1 /* 2  * This file is part of RskJ 3  * Copyright (C) 2017 RSK Labs Ltd. 4  * (derived from ethereumJ library, Copyright (c) 2016 <ether.camp>) 5  * 6  * This program is free software: you can redistribute it and/or modify 7  * it under the terms of the GNU Lesser General Public License as published by 8  * the Free Software Foundation, either version 3 of the License, or 9  * (at your option) any later version. 10  * 11  * This program is distributed in the hope that it will be useful, 12  * but WITHOUT ANY WARRANTY; without even the implied warranty of 13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14  * GNU Lesser General Public License for more details. 15  * 16  * You should have received a copy of the GNU Lesser General Public License 17  * along with this program. If not, see <http://www.gnu.org/licenses/>. 18  */ 19  20  21 package org.ethereum.vm; 22  23 /** 24  * @author Roman Mandeleil 25  * @since 03.07.2014 26  */ 27 public class CallCreate { 28  29  final byte[] data; 30  final byte[] destination; 31  final long gasLimit; 32  final byte[] value; 33  34  35  public CallCreate(byte[] data, byte[] destination, long gasLimit, byte[] value) { 36  this.data = data; 37  this.destination = destination; 38  this.gasLimit = gasLimit; 39  this.value = value; 40  } 41  42  public byte[] getData() { 43  return data; 44  } 45  46  public byte[] getDestination() { 47  return destination; 48  } 49  50  public long getGasLimit() { 51  return gasLimit; 52  } 53  54  public byte[] getValue() { 55  return value; 56  } 57 }