提交 44de42ab 编写于 作者: J jinlong12

s

上级 bc23335b
...@@ -1405,7 +1405,7 @@ router.get('/:ledger/txs/hash/:tx_hash', function(req, res) { ...@@ -1405,7 +1405,7 @@ router.get('/:ledger/txs/hash/:tx_hash', function(req, res) {
// GET /ledgers/{ledger}/users/count // GET /ledgers/{ledger}/users/count
router.get('/:ledger/users/count', function(req, res) { router.get('/:ledger/users/count', function(req, res) {
res.type('json'); res.type('json');
let params = req.body let params = req.body,
ret = {}; ret = {};
Object.assign(ret, resultData,{ Object.assign(ret, resultData,{
......
...@@ -49,7 +49,7 @@ export default class BlockInfo extends Component { ...@@ -49,7 +49,7 @@ export default class BlockInfo extends Component {
let legder=this.props.store.common.getDefaultLedger(); let legder=this.props.store.common.getDefaultLedger();
this.transactioninfoData={}; this.transactioninfoData={};
Promise.all([ Promise.all([
block.getTransactionMore({"ledger":legder,'tx_hash':record.transactionHash.value}), block.getTransactionMore({"ledger":legder,'tx_hash':record.transactionHash}),
]).then((success) => { ]).then((success) => {
this.show=true; this.show=true;
this.transactioninfoData=block.transactionInfo; this.transactioninfoData=block.transactionInfo;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册