Skip to content

Commit

Permalink
Merge pull request #125 from bitshares/develop
Browse files Browse the repository at this point in the history
Fix transfer bug for BitShares
  • Loading branch information
Stefan Schießl authored May 25, 2019
2 parents edf5ac0 + 76e6445 commit 3faf780
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "beet",
"productName": "beet",
"version": "0.6.5",
"version": "0.6.6",
"apiversion": 3,
"description": "Beet is a stand-alone key-manager and signing app for blockchains like BitShares, Steem and EOS, as well as BTC, BinanceChain and others.",
"main": "src/index.js",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/blockchains/BitShares.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,11 @@ export default class BitShares extends BlockchainAPI {
});
return tr;
}
} else if (operation.type) {
} else if (incoming.type) {
let tr = new TransactionBuilder();
tr.add_type_operation(
operation.type,
operation.data
incoming.type,
incoming.data
);
return tr;
}
Expand Down

0 comments on commit 3faf780

Please sign in to comment.