Skip to content
Snippets Groups Projects
Commit 85b0f76b authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Fix: TRANSFER transaction were no more accepted

parent df34bfcb
Branches
Tags
No related merge requests found
...@@ -71,7 +71,7 @@ module.exports.get = function (currency) { ...@@ -71,7 +71,7 @@ module.exports.get = function (currency) {
else if(tx.type == 'FUSION'){ else if(tx.type == 'FUSION'){
fusion(tx, callback); fusion(tx, callback);
} }
else if(tx.type == 'TRANSFERT'){ else if(tx.type == 'TRANSFER'){
transfert(tx, callback); transfert(tx, callback);
} }
else{ else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment