use of com.hedera.services.legacy.core.jproto.JDelegatableContractIDKey in project hedera-services by hashgraph.
the class PlatformSigOpsTest method setup.
@BeforeEach
void setup() throws Throwable {
pubKeys.clear();
sigBytes = mock(PubKeyToSigBytes.class);
sigFactory = mock(TxnScopedPlatformSigFactory.class);
for (final var kt : kts) {
pubKeys.add(kt.asJKey());
}
pubKeys.add(new JContractIDKey(0, 0, 1234));
pubKeys.add(new JDelegatableContractIDKey(0, 0, 12345));
}
Aggregations