1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use move_binary_format::errors::PartialVMResult;
use move_core_types::account_address::AccountAddress;
use move_vm_runtime::native_functions::NativeContext;
use move_vm_types::{
gas_schedule::NativeCostIndex,
loaded_data::runtime_types::Type,
natives::function::{native_gas, NativeResult},
pop_arg,
values::Value,
};
use smallvec::smallvec;
use std::collections::VecDeque;
pub fn native_create_signer(
context: &mut NativeContext,
ty_args: Vec<Type>,
mut arguments: VecDeque<Value>,
) -> PartialVMResult<NativeResult> {
debug_assert!(ty_args.is_empty());
debug_assert!(arguments.len() == 1);
let address = pop_arg!(arguments, AccountAddress);
let cost = native_gas(context.cost_table(), NativeCostIndex::CREATE_SIGNER, 0);
Ok(NativeResult::ok(cost, smallvec![Value::signer(address)]))
}
pub fn native_destroy_signer(
context: &mut NativeContext,
ty_args: Vec<Type>,
arguments: VecDeque<Value>,
) -> PartialVMResult<NativeResult> {
debug_assert!(ty_args.is_empty());
debug_assert!(arguments.len() == 1);
let cost = native_gas(context.cost_table(), NativeCostIndex::DESTROY_SIGNER, 0);
Ok(NativeResult::ok(cost, smallvec![]))
}