You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: MAINTAINERS.md
+14
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,20 @@
4
4
Maintainers
5
5
===========
6
6
7
+
You can find out who's contributed recently just by looking at GitHub's [contributors list](https://github.com/hyperledger-labs/blockchain-explorer/graphs/contributors). But there are a few more things you ought to know about who maintains this code, and how they do it:
8
+
9
+
Make sure you read our contributor guidelines so you understand how we work and how to collaborate effectively. This includes instructions about pull request and code review protocols, and it explains what we mean by calling someone a "maintainer" in this file.
10
+
11
+
Be aware that individual folders in the project may have more specific maintainers; if you see another MAINTAINERS.md in a subfolder, that governs the tree below it.
12
+
13
+
A lot of interactions with maintainers take place on Discord. You'll need [Linux Foundation credentials](https://identity.linuxfoundation.org/) to comment there; creating them is self-service. The project name you want, once in Discord, is "[blockchain-explorer](https://discord.com/channels/905194001349627914/1039606111654920255)". Most of the team hangs out there during their work day; look for #Blockchain-explorer.
14
+
15
+
**Who To Contact**
16
+
For ordinary questions, we suggest you contact [active contributors](https://github.com/hyperledger-labs/blockchain-explorer/graphs/contributors) generically, on Discord [#blockchain-explorer](https://discord.com/channels/905194001349627914/1039606111654920255). If that doesn't get someone's attention, feel free to contact the contributors individually.
17
+
18
+
Maintainers are busy and delegate many decisions to other trusted contributors. However, it is appropriate to contact them if you have a complex design decision or a controversial PR.
Copy file name to clipboardexpand all lines: app/persistence/fabric/CRUDService.ts
+96-27
Original file line number
Diff line number
Diff line change
@@ -82,31 +82,51 @@ export class CRUDService {
82
82
* @param {*} txid
83
83
* @param {*} from
84
84
* @param {*} to
85
+
* @param {*} page
86
+
* @param {*} size
85
87
* @param {*} orgs
86
88
* @returns
87
89
* @memberof CRUDService
88
90
*/
89
-
getTxList(
91
+
asyncgetTxList(
90
92
network_name: any,
91
93
channel_genesis_hash: any,
92
94
blockNum: any,
93
95
txid: any,
94
96
from: any,
95
97
to: any,
96
-
orgs: string
98
+
orgs: string,
99
+
page: number,
100
+
size: number
97
101
){
102
+
varcountOfTxns: number;
98
103
letsqlTxList=` select t.creator_msp_id,t.txhash,t.type,t.chaincodename,t.createdt,channel.name as channelName from transactions as t
99
104
inner join channel on t.channel_genesis_hash=channel.channel_genesis_hash and t.network_name = channel.network_name where t.blockid >= $1 and t.id >= $2 and
100
105
t.channel_genesis_hash = $3 and t.network_name = $4 and t.createdt between $5 and $6 `;
sqlTxCount=` select count(*) from transactions as t inner join channel on t.channel_genesis_hash=channel.channel_genesis_hash and t.network_name = channel.network_name
111
+
where t.blockid >= $1 and t.id >= $2 and t.channel_genesis_hash = $3 and t.network_name = $4 and t.createdt between $5 and $6 `
0 commit comments