Skip to content
Snippets Groups Projects
Commit ec625c84 authored by Éloïs's avatar Éloïs
Browse files

[ref] bma: add types

parent 29e17f92
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
import { BlockDTO } from "../../../lib/dto/BlockDTO";
import { WS2PHead } from "../../ws2p/lib/WS2PCluster";
import { JSONDBPeer } from "../../../lib/db/DBPeer";
import { TransactionDTO } from "../../../lib/dto/TransactionDTO";
export const Summary = {
duniter: {
......@@ -292,7 +293,7 @@ export function block2HttpBlock(blockDTO: BlockDTO): HttpBlock {
revoked: blockDTO.revoked,
excluded: blockDTO.excluded,
transactions: blockDTO.transactions.map(
(tx): HttpTransactionOfBlock => {
(tx: TransactionDTO): HttpTransactionOfBlock => {
return {
version: tx.version,
currency: tx.currency,
......
......@@ -13,12 +13,13 @@
import { BlockDTO } from "../../../lib/dto/BlockDTO";
import { Underscore } from "../../../lib/common-libs/underscore";
import { HttpBlock } from "./dtos";
export const stat = (stat: number[]) => {
return { blocks: stat };
};
export const block = (block: any) => {
export const block = (block: any): HttpBlock => {
const json: any = {};
json.version = parseInt(block.version);
json.nonce = parseInt(block.nonce);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment