corda / net.corda.core.contracts / TransactionVerificationException / MissingNetworkParametersException

MissingNetworkParametersException

class MissingNetworkParametersException : TransactionVerificationException

Thrown when the network parameters with hash: missingNetworkParametersHash is not available at this node. Usually all the parameters that are in the resolution chain for transaction with txId should be fetched from peer via FetchParametersFlow or from network map.

Parameters

txId - Id of the transaction that has missing parameters hash in the resolution chain

missingNetworkParametersHash - Missing hash of the network parameters associated to this transaction

Constructors

<init>

MissingNetworkParametersException(txId: SecureHash, missingNetworkParametersHash: SecureHash)

Thrown when the network parameters with hash: missingNetworkParametersHash is not available at this node. Usually all the parameters that are in the resolution chain for transaction with txId should be fetched from peer via FetchParametersFlow or from network map.

MissingNetworkParametersException(txId: SecureHash, message: String)