From 8b1092e3ffec43cf3c5aa2800489891fda3004c3 Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Wed, 5 Feb 2014 10:30:41 -0300 Subject: [PATCH] fix controller transaction --- app/controllers/transactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/transactions.js b/app/controllers/transactions.js index 831025c..9eeb5f1 100644 --- a/app/controllers/transactions.js +++ b/app/controllers/transactions.js @@ -3,7 +3,7 @@ /** * Module dependencies. */ -var Transaction = require('../models/Transaction').class(); +var Transaction = require('../../lib/TransactionDb').class(); var Address = require('../models/Address'); var async = require('async'); var common = require('./common');