13 lines
227 B
C
13 lines
227 B
C
#ifdef HAVE_ETH2
|
|
|
|
#include "shared_context.h"
|
|
|
|
uint32_t set_result_get_eth2_publicKey() {
|
|
uint32_t tx = 0;
|
|
memmove(G_io_apdu_buffer + tx, tmpCtx.publicKeyContext.publicKey.W, 48);
|
|
tx += 48;
|
|
return tx;
|
|
}
|
|
|
|
#endif
|