From 2bc6e788fe20745e732d156a8a2718106e10be50 Mon Sep 17 00:00:00 2001 From: Luke Rohenaz Date: Mon, 6 Feb 2023 21:57:02 -0500 Subject: [PATCH] fix lint --- magic.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/magic.go b/magic.go index 8a7af1a..c79027c 100644 --- a/magic.go +++ b/magic.go @@ -106,10 +106,10 @@ func (m MAP) delete(cells []bpu.Cell) { func (m MAP) selecter(cells []bpu.Cell) { if len(cells) < 5 { - fmt.Errorf("missing required parameters in MAP SELECT statement - cell length: %d", len(cells)) + fmt.Printf("missing required parameters in MAP SELECT statement - cell length: %d", len(cells)) } if cells[2].S == nil || len(*cells[2].S) != 64 { - fmt.Errorf("syntax error - invalid Txid in SELECT command: %d", len(cells)) + fmt.Printf("syntax error - invalid Txid in SELECT command: %d", len(cells)) } m[TxID] = *cells[2].S m[SelectCmd] = *cells[3].S