pub type TransferResult = Result<BlockIndex, TransferError>;
Expand description
The result type for a transfer, which can either be a BlockIndex
or a TransferError
.
Aliased Type§
enum TransferResult {
Ok(Nat),
Err(TransferError),
}
pub type TransferResult = Result<BlockIndex, TransferError>;
The result type for a transfer, which can either be a BlockIndex
or a TransferError
.
enum TransferResult {
Ok(Nat),
Err(TransferError),
}