File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change
1
+ #pragma once
2
+
3
+ #include <stdint.h>
4
+ #include "bip32.h"
5
+
6
+ typedef struct bip32_path_t {
7
+ uint8_t length ;
8
+ uint32_t path [MAX_BIP32_PATH ];
9
+ } bip32_path_t ;
Original file line number Diff line number Diff line change 9
9
#include "common_utils.h"
10
10
#include "plugin_utils.h"
11
11
#include "tx_content.h"
12
+ #include "bip32_utils.h"
12
13
13
14
/*************************************************************************************************
14
15
* Comments provided in this file are quick reminders on the usage of the plugin interface *
@@ -156,6 +157,7 @@ typedef struct ethPluginInitContract_s {
156
157
157
158
// INPUT. Total length of the data to come.
158
159
size_t dataSize ;
160
+ bip32_path_t * bip32 ;
159
161
160
162
} ethPluginInitContract_t ;
161
163
// --8<-- [end:handle_init_contract_parameters]
You can’t perform that action at this time.
0 commit comments