From ce1f81c7cb1afea1f0699424c2dfc502bbdb47ae Mon Sep 17 00:00:00 2001 From: Alexander Blair Date: Tue, 17 Oct 2017 11:47:47 -0700 Subject: [PATCH] Fix for a bug Knew I was going to forget something somewhere. Fixes #134. Thanks for the report! --- lib/coins/xmr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/coins/xmr.js b/lib/coins/xmr.js index ac97e8b..558e0fb 100644 --- a/lib/coins/xmr.js +++ b/lib/coins/xmr.js @@ -80,7 +80,7 @@ function Coin(data){ reserve_size: 17, wallet_address: walletAddress }, function(body){ - return callback(err, body); + return callback(body); }); };