From a06e6d8971526a55dbdcd5482f5e6e66ac40c97e Mon Sep 17 00:00:00 2001 From: Hannes Karppila Date: Thu, 13 Jan 2022 06:07:48 +0200 Subject: [PATCH] Make parse-bytecode output spaces instead of nulls --- forc/src/cli/commands/parse_bytecode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forc/src/cli/commands/parse_bytecode.rs b/forc/src/cli/commands/parse_bytecode.rs index 31e63646a9e..03bac613c60 100644 --- a/forc/src/cli/commands/parse_bytecode.rs +++ b/forc/src/cli/commands/parse_bytecode.rs @@ -36,7 +36,7 @@ pub(crate) fn exec(command: Command) -> Result<(), String> { TableCell::new("raw"), TableCell::new("notes"), ])); - table.style = term_table::TableStyle::blank(); + table.style = term_table::TableStyle::empty(); for (word_ix, instruction) in instructions.iter().enumerate() { use fuel_asm::Opcode::*; let notes = match instruction.1 {