Skip to content

Commit 0845ee3

Browse files
committed
v0.8.5
1 parent a09dbc6 commit 0845ee3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ex/lib/bic/base.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,12 @@ defmodule BIC.Base do
5656
if !action, do: throw(%{error: :no_actions})
5757

5858
env = Map.put(env, :current_account, action.contract)
59-
if BlsEx.Native.validate_public_key(action.contract) do
59+
if BlsEx.validate_public_key(action.contract) do
6060
else
6161
seed_random(env.entry_vr, env.tx_hash, "0")
6262
module = String.to_existing_atom("Elixir.BIC.#{action.contract}")
6363
function = String.to_existing_atom(action.function)
64+
6465
:erlang.apply(module, :call, [function, env, action.args])
6566
end
6667
%{error: :ok}

ex/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule Ama.MixProject do
66
def project do
77
[
88
app: @app,
9-
version: "0.8.4",
9+
version: "0.8.5",
1010
elixir: ">= 1.18.0",
1111
start_permanent: Mix.env() == :prod,
1212
deps: deps(),

ex/mix.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%{
22
"bakeware": {:git, "https://github.com/bake-bake-bake/bakeware", "67d2139fcbb74ebe7604a2cc0471c54ac2e8ac7a", [branch: "main"]},
33
"blake3": {:git, "https://github.com/vans163/blake3", "d8d6213fd2bc4ffda83576b63f14c5e7c84537b1", [branch: "finalize_xof"]},
4-
"bls_ex": {:git, "https://github.com/amadeus-robot/bls_ex", "f583750d85884d85f46079600c9b609966b1ab68", []},
4+
"bls_ex": {:git, "https://github.com/amadeus-robot/bls_ex", "f9165b842a31d8784a4438807b9c5facb388b50f", []},
55
"comsat": {:git, "https://github.com/vans163/ComSat.git", "7178d64dfda9d4669ba9f1e475dbcf6ee93e0ef5", []},
66
"elixir_make": {:hex, :elixir_make, "0.9.0", "6484b3cd8c0cee58f09f05ecaf1a140a8c97670671a6a0e7ab4dc326c3109726", [:mix], [], "hexpm", "db23d4fd8b757462ad02f8aa73431a426fe6671c80b200d9710caf3d1dd0ffdb"},
77
"exjsx": {:hex, :exjsx, "4.0.0", "60548841e0212df401e38e63c0078ec57b33e7ea49b032c796ccad8cde794b5c", [:mix], [{:jsx, "~> 2.8.0", [hex: :jsx, repo: "hexpm", optional: false]}], "hexpm", "32e95820a97cffea67830e91514a2ad53b888850442d6d395f53a1ac60c82e07"},

0 commit comments

Comments
 (0)