Execute bdk-cli key commands with given args
(&self, args: &[&str])
| 174 | |
| 175 | /// Execute bdk-cli key commands with given args |
| 176 | fn key_exec(&self, args: &[&str]) -> Result<Value, IntTestError> { |
| 177 | let mut key_args = ["key"].to_vec(); |
| 178 | for arg in args { |
| 179 | key_args.push(arg); |
| 180 | } |
| 181 | run_cmd_with_args(&self.target, &key_args) |
| 182 | } |
| 183 | |
| 184 | /// Execute bdk-cli node command |
| 185 | fn node_exec(&self, args: &[&str]) -> Result<Value, IntTestError> { |
no test coverage detected