com.jd.blockchain.transaction.OperationCompletedContext Maven / Gradle / Ivy
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