Skip to content

Commit

Permalink
Set correct array type
Browse files Browse the repository at this point in the history
  • Loading branch information
Bushstar committed Apr 6, 2023
1 parent 33c0080 commit 13b5755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ std::array<uint8_t, 32> GetKeyFromWallets(rust::Vec<uint8_t> input) {
}
}

std::array<uint32_t, 32> result{};
std::array<uint8_t, 32> result{};
std::copy(key.begin(), key.end(), result.begin());

return result;
Expand Down

0 comments on commit 13b5755

Please sign in to comment.