9 lines
278 B
Plaintext
9 lines
278 B
Plaintext
print("Attempting to access context with non-signatories...");
|
|
print("Participants: [dave, eve]");
|
|
print("Signatories: [alice, bob, charlie]");
|
|
|
|
// This should fail because neither dave nor eve are signatories
|
|
let ctx = get_context(["dave", "eve"]);
|
|
|
|
"This should not succeed!"
|