org.hyperledger.fabric.client.SubmittedTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-gateway Show documentation
Show all versions of fabric-gateway Show documentation
Hyperledger Fabric Gateway client API for Java
The newest version!
/*
* Copyright 2021 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.client;
/**
* Allows access to the transaction result and its commit status on the ledger.
*/
public interface SubmittedTransaction extends Commit {
/**
* Get the transaction result. This is obtained during the endorsement process when the transaction proposal is
* run on endorsing peers and so is available immediately. The transaction might subsequently fail to commit
* successfully.
* @return Transaction result.
*/
byte[] getResult();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy