use of com.hedera.services.bdd.spec.transactions.contract.HapiContractCreate in project hedera-services by hashgraph.
the class RandomContract method get.
@Override
public Optional<HapiSpecOperation> get() {
if (contracts.numPresent() >= ceilingNum) {
return Optional.empty();
}
Optional<String> key = keys.getQualifying();
if (key.isEmpty()) {
return Optional.empty();
}
int n = opNo.getAndIncrement();
final String tentativeContract = my("contract" + n);
final SupportedContract choice = choices[n % choices.length];
HapiContractCreate op = contractCreate(tentativeContract).adminKey(key.get()).bytecode(fileFor(choice)).skipAccountRegistration().hasPrecheckFrom(STANDARD_PERMISSIBLE_PRECHECKS).hasKnownStatusFrom(permissibleOutcomes).uponSuccess(registry -> {
registry.saveContractChoice(tentativeContract, choice);
AtomicInteger tag = new AtomicInteger();
choice.getCallDetails().forEach(detail -> {
ActionableContractCall call = new ActionableContractCall(tentativeContract, detail);
registry.saveActionableCall(tentativeContract + "-" + tag.getAndIncrement(), call);
});
choice.getLocalCallDetails().forEach(detail -> {
ActionableContractCallLocal call = new ActionableContractCallLocal(tentativeContract, detail);
registry.saveActionableLocalCall(tentativeContract + "-" + tag.getAndIncrement(), call);
});
});
return Optional.of(op);
}
Aggregations