This commit is contained in:
str4d 2024-04-17 18:40:37 +01:00 committed by GitHub
commit d5a5f6a02e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 26 additions and 1 deletions

View File

@ -54,6 +54,9 @@ products/%/frameworks/libzcashlc.framework: products/%/universal/libzcashlc.a
cp -R rust/target/Headers $@
mkdir $@/Modules
cp support/module.modulemap $@/Modules
# Workaround for a bug in the XCode 15.3 build system.
# https://github.com/Electric-Coin-Company/zashi-ios/issues/1166
cp support/platform-Info.plist $@/Info.plist
products/macos/universal/libzcashlc.a: $(MACOS_ARCHS)
mkdir -p $(@D)

View File

@ -2742,7 +2742,7 @@ fn zip317_helper<DbT>(
StandardFeeRule::PreZip313
};
GreedyInputSelector::new(
SingleOutputChangeStrategy::new(fee_rule, change_memo, ShieldedProtocol::Sapling),
SingleOutputChangeStrategy::new(fee_rule, change_memo, ShieldedProtocol::Orchard),
DustOutputPolicy::default(),
)
}

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>libzcashlc</string>
<key>CFBundleIdentifier</key>
<string>libzcashlc</string>
<key>CFBundleName</key>
<string>libzcashlc</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleVersion</key>
<string>0.7.5</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>iphonesimulator</string>
</array>
<key>MinimumOSVersion</key>
<string>100.0</string>
</dict>
</plist>