Skip to content

Commit

Permalink
for UpdatedFungibleAssets
Browse files Browse the repository at this point in the history
  • Loading branch information
riemannulus committed Sep 15, 2023
1 parent 0d079ad commit 4e53acd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Lib9c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using System.Collections.Immutable;
using System.Numerics;
using System.Security.Cryptography;
using Bencodex.Types;
using Libplanet.Action;
Expand All @@ -6,6 +8,7 @@
using Libplanet.Common;
using Libplanet.Crypto;
using Libplanet.Extensions.ActionEvaluatorCommonComponents;
using Libplanet.Types.Assets;
using Libplanet.Types.Tx;
using ActionEvaluation = Libplanet.Extensions.ActionEvaluatorCommonComponents.ActionEvaluation;
using ArgumentOutOfRangeException = System.ArgumentOutOfRangeException;
Expand Down Expand Up @@ -68,7 +71,7 @@ public IReadOnlyList<IActionResult> Evaluate(IPreEvaluationBlock block)
false),
new AccountStateDelta(),
null)
}.Select(x => new ActionResult(x)).ToArray();
}.Select(x => new ActionResult(x, ImmutableDictionary<(Address, Currency), BigInteger>.Empty)).ToArray();
}
}

Expand All @@ -95,7 +98,7 @@ public IReadOnlyList<IActionResult> Evaluate(IPreEvaluationBlock block)
false),
new AccountStateDelta(),
null)
}.Select(x => new ActionResult(x)).ToArray();
}.Select(x => new ActionResult(x, ImmutableDictionary<(Address, Currency), BigInteger>.Empty)).ToArray();
}
}

Expand Down

0 comments on commit 4e53acd

Please sign in to comment.