Skip to content

Commit

Permalink
Merge pull request #6315 from planetarium/feature/bump-lib9c
Browse files Browse the repository at this point in the history
bump lib9c, resolve compile error
  • Loading branch information
tyrosine1153 authored Nov 12, 2024
2 parents 6e9e4bf + 9cb09db commit a99cbda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions nekoyume/Assets/_Scripts/Blockchain/ActionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1763,11 +1763,7 @@ public IObservable<ActionEvaluation<ClaimGifts>> ClaimGifts(
Address avatarAddress,
int giftId)
{
var action = new ClaimGifts
{
AvatarAddress = avatarAddress,
GiftId = giftId,
};
var action = new ClaimGifts(avatarAddress, giftId);
ProcessAction(action);
return _agent.ActionRenderer.EveryRender<ClaimGifts>()
.Timeout(ActionTimeout)
Expand Down
2 changes: 1 addition & 1 deletion nekoyume/Assets/_Scripts/Blockchain/ActionRenderHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2844,7 +2844,7 @@ private void ResponseClaimGifts(ActionEvaluation<ClaimGifts> eval)
var costumeSheet = Game.Game.instance.TableSheets.CostumeItemSheet;
var random = new LocalRandom(eval.RandomSeed);
var (itemId, quantity) = giftRow.Items.First();
var (itemId, quantity, tradable) = giftRow.Items.First();
var costume = ItemFactory.CreateCostume(costumeSheet[itemId], random.GenerateRandomGuid());
Widget.Find<ClaimGiftsResultScreen>().Show(costume);
Expand Down
2 changes: 1 addition & 1 deletion nekoyume/Assets/_Scripts/Lib9c/lib9c
Submodule lib9c updated 40 files
+14 −4 .Lib9c.Benchmarks/Lib9c.Benchmarks.csproj
+181 −0 .Lib9c.Tests/Action/ClaimGiftsTest.cs
+4 −0 .Lib9c.Tests/Action/EventDungeonBattleTest.cs
+8 −1 .Lib9c.Tests/Lib9c.Tests.csproj
+33 −0 .Lib9c.Tests/TableData/Event/ClaimableGiftsSheetTest.cs
+2 −0 .Lib9c.Tests/TableSheets.cs
+8 −1 .Lib9c.Tools/Lib9c.Tools.csproj
+0 −1 .Libplanet
+6 −2 ...anet.Extensions.ActionEvaluatorCommonComponents/Libplanet.Extensions.ActionEvaluatorCommonComponents.csproj
+0 −2 .github/workflows/lib9c_plugin_build_and_push_s3.yaml
+19 −0 .github/workflows/lint.yml
+2 −12 .github/workflows/main.yml
+0 −1 .github/workflows/publish-docs.yml
+0 −2 .github/workflows/publish.yml
+0 −4 .github/workflows/release.yaml
+8 −4 .github/workflows/validate-github-actions-workflows.yml
+0 −3 .gitmodules
+6 −0 CONTRIBUTING.md
+18 −0 Directory.Build.props
+7 −2 Lib9c.Abstractions/Lib9c.Abstractions.csproj
+12 −3 Lib9c.DevExtensions/Lib9c.DevExtensions.csproj
+41 −0 Lib9c.MessagePack/Formatters/CurrencyFormatter.cs
+2 −0 Lib9c.MessagePack/Formatters/NineChroniclesResolverGetFormatterHelper.cs
+7 −1 Lib9c.Proposer/Lib9c.Proposer.csproj
+3 −2 Lib9c.Utils/BlockHelper.cs
+0 −81 Lib9c.sln
+21 −0 Lib9c/Action/AlreadyClaimedGiftsException.cs
+49 −20 Lib9c/Action/ClaimGifts.cs
+1 −17 Lib9c/Action/ClaimableGiftsNotAvailableException.cs
+5 −1 Lib9c/Action/EventDungeonBattle.cs
+2 −1 Lib9c/Action/InvalidSignatureException.cs
+22 −7 Lib9c/Lib9c.csproj
+9 −4 Lib9c/Module/GiftModule.cs
+6 −2 Lib9c/TableCSV/ClaimableGiftsSheet.csv
+7 −0 Lib9c/TableCSV/StakeRegularRewardSheet_V8.csv.meta
+0 −252 Lib9c/TableCSV/_MaterialFungibleId_2024-08-22.csv
+4 −3 Lib9c/TableData/Event/ClaimableGiftsSheet.cs
+8 −2 Libplanet.Crypto.Secp256k1/Libplanet.Crypto.Secp256k1.csproj
+0 −1 README.md
+0 −7 integrations/javascript/@planetarium/lib9c/CONTRIBUTING.md

0 comments on commit a99cbda

Please sign in to comment.