From fd24841dc5bc6b2e10758bd22031480b204075c1 Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Sun, 7 Jan 2024 08:24:00 +0200 Subject: [PATCH] Add tx mass field in proto files --- proto/p2p.proto | 1 + proto/rpc.proto | 1 + 2 files changed, 2 insertions(+) diff --git a/proto/p2p.proto b/proto/p2p.proto index b6666ce..890f282 100644 --- a/proto/p2p.proto +++ b/proto/p2p.proto @@ -30,6 +30,7 @@ message TransactionMessage{ SubnetworkId subnetworkId = 5; uint64 gas = 6; bytes payload = 8; + uint64 mass = 9; } message TransactionInput{ diff --git a/proto/rpc.proto b/proto/rpc.proto index 262583f..2096030 100644 --- a/proto/rpc.proto +++ b/proto/rpc.proto @@ -66,6 +66,7 @@ message RpcTransaction { uint64 gas = 6; string payload = 8; RpcTransactionVerboseData verboseData = 9; + uint64 mass = 10; } message RpcTransactionInput {