Skip to content

Commit

Permalink
fix call_api_cmd_halley.move
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg committed Feb 10, 2023
1 parent a3090d2 commit 09e124e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ processed 4 tasks

task 3 'run'. lines 7-14:
{
"gas_used": 0,
"status": {
"Discard": {
"status_code": "26",
"status_code_name": "FEATURE_UNDER_GATING"
}
}
"gas_used": 10399,
"status": "Executed"
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ script{
use StarcoinFramework::Vector;
fun main(_sender: signer, block_number: u64, block_hash: vector<u8>){
assert!(block_number == 1, 1000);
assert!(Vector::length(&block_hash) == 32, 1001);
assert!(Vector::length(&block_hash) > 32, 1001);
}
}

0 comments on commit 09e124e

Please sign in to comment.