From b42aa8096b2a954328f983248fce7a99fbf540e0 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Tue, 8 Jan 2019 15:49:11 +0100 Subject: [PATCH] protob: add destination tag field for ripple --- protob/messages-ripple.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/messages-ripple.proto b/protob/messages-ripple.proto index 5d13c909e..ce31fbf0b 100644 --- a/protob/messages-ripple.proto +++ b/protob/messages-ripple.proto @@ -45,6 +45,7 @@ message RippleSignTx { message RipplePayment { optional uint64 amount = 1; // only XRP is supported at the moment so this an integer optional string destination = 2; // destination account address + optional uint32 destination_tag = 3; // destination tag to identify payments } }