devInspectTransactionBlock method
Future<DevInspectResults>
devInspectTransactionBlock(
- String sender,
- Transaction transaction, {
- BigInt? gasPrice,
- String? epoch,
Implementation
Future<DevInspectResults> devInspectTransactionBlock(
String sender,
Transaction transaction, {
BigInt? gasPrice,
String? epoch
}
) async {
transaction.setSenderIfNotSet(sender);
final txBytes = await transaction.build(
BuildOptions(client: this, onlyTransactionKind: true)
);
final result = await devInspectTransaction(
sender,
txBytes,
gasPrice: gasPrice,
epoch: epoch
);
return result;
}