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) } }