Skip to content

Commit

Permalink
Update dependencies and FFI bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewLM committed Jan 30, 2024
1 parent 85ab120 commit 56852a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions coinlib/lib/src/secp256k1/secp256k1.ffi.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -752,9 +752,6 @@ class NativeSecp256k1 {
secp256k1_nonce_function get secp256k1_nonce_function_rfc6979 =>
_secp256k1_nonce_function_rfc6979.value;

set secp256k1_nonce_function_rfc6979(secp256k1_nonce_function value) =>
_secp256k1_nonce_function_rfc6979.value = value;

/// A default safe nonce generation function (currently equal to secp256k1_nonce_function_rfc6979).
late final ffi.Pointer<secp256k1_nonce_function>
_secp256k1_nonce_function_default =
Expand All @@ -763,9 +760,6 @@ class NativeSecp256k1 {
secp256k1_nonce_function get secp256k1_nonce_function_default =>
_secp256k1_nonce_function_default.value;

set secp256k1_nonce_function_default(secp256k1_nonce_function value) =>
_secp256k1_nonce_function_default.value = value;

/// Create an ECDSA signature.
///
/// Returns: 1: signature created
Expand Down Expand Up @@ -1909,10 +1903,6 @@ class NativeSecp256k1 {
secp256k1_nonce_function_hardened get secp256k1_nonce_function_bip340 =>
_secp256k1_nonce_function_bip340.value;

set secp256k1_nonce_function_bip340(
secp256k1_nonce_function_hardened value) =>
_secp256k1_nonce_function_bip340.value = value;

/// Create a Schnorr signature.
///
/// Does _not_ strictly follow BIP-340 because it does not verify the resulting
Expand Down
2 changes: 1 addition & 1 deletion coinlib/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
sdk: '>=3.2.0 <4.0.0'

dev_dependencies:
ffigen: ^10.0.0
ffigen: ^11.0.0
lints: ^3.0.0
test: ^1.21.0

Expand Down

0 comments on commit 56852a5

Please sign in to comment.