use of com.hedera.services.config.FileNumbers in project hedera-services by hashgraph.
the class SigOpsRegressionTest method invokeOtherPartySigActivationScenario.
private boolean invokeOtherPartySigActivationScenario(List<TransactionSignature> knownSigs) {
platformTxn.getPlatformTxn().clear();
platformTxn.getPlatformTxn().addAll(knownSigs.toArray(new TransactionSignature[0]));
final var hfsSigMetaLookup = new HfsSigMetaLookup(hfs, fileNumbers);
SigRequirements keysOrder = new SigRequirements(defaultLookupsFor(aliasManager, hfsSigMetaLookup, () -> accounts, null, ref -> null, ref -> null), mockSignatureWaivers);
return otherPartySigsAreActive(platformTxn, keysOrder, CODE_ORDER_RESULT_FACTORY);
}
Aggregations