feat: add gcm semantic to b2p and p2b

This commit is contained in:
0xalivecow 2024-11-01 21:20:46 +01:00
parent 28a8753d55
commit 8db0bbaa63
No known key found for this signature in database
9 changed files with 299 additions and 206 deletions

View file

@ -27,7 +27,7 @@ pub fn task_deploy(testcase: &Testcase) -> Result<Value> {
match testcase.action.as_str() {
"poly2block" => {
let result = poly2block(args);
let result = BASE64_STANDARD.encode(poly2block(args)?);
let json = json!({"block" : result});
Ok(json)
}