From e464080a76d36f7d8281bc2a19ab2e6fb466e5ce Mon Sep 17 00:00:00 2001 From: Alexis Hernandez Date: Thu, 3 Jan 2019 22:27:45 -0700 Subject: [PATCH] server: Don't ignore errors while loading transaction inputs --- server/app/com/xsn/explorer/services/TransactionService.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app/com/xsn/explorer/services/TransactionService.scala b/server/app/com/xsn/explorer/services/TransactionService.scala index 81c5834..47dac3d 100644 --- a/server/app/com/xsn/explorer/services/TransactionService.scala +++ b/server/app/com/xsn/explorer/services/TransactionService.scala @@ -80,7 +80,7 @@ class TransactionService @Inject() ( val newVIN = vin.copy(address = Some(transactionValue.address), value = Some(transactionValue.value)) Good(newVIN) - case Bad(_) => Good(vin) + case Bad(e) => Bad(e) } }