All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.blockchain.transaction.OperationCompletedContext Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.transaction;

import com.jd.blockchain.ledger.BytesValue;

public class OperationCompletedContext {

	private int operationIndex;

	private BytesValue returnBytesValue;

	public OperationCompletedContext(int operationIndex, BytesValue returnBytesValue) {
		this.operationIndex = operationIndex;
		this.returnBytesValue = returnBytesValue;
	}

	public int getOperationIndex() {
		return operationIndex;
	}

	public BytesValue getReturnBytesValue() {
		return returnBytesValue;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy