Skip to content

Commit fd0f549

Browse files
committed
runtimes/simple-keyvalue: Enable confidential queries
1 parent d698df4 commit fd0f549

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

  • tests/runtimes/simple-keyvalue/src

tests/runtimes/simple-keyvalue/src/main.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,11 @@ impl TxnDispatcher for Dispatcher {
260260
Methods::get_runtime_id,
261261
),
262262
"get" => Self::dispatch_call(&mut ctx, cbor::from_slice(&args).unwrap(), Methods::get),
263+
"enc_get" => Self::dispatch_call(
264+
&mut ctx,
265+
cbor::from_slice(&args).unwrap(),
266+
Methods::enc_get_using_secrets,
267+
),
263268
_ => Err("method not found".to_string()),
264269
};
265270

0 commit comments

Comments
 (0)