Skip to content

Instantly share code, notes, and snippets.

View anupam-io's full-sized avatar
🤠
bonjour

anupam anupam-io

🤠
bonjour
View GitHub Profile
@anupam-io
anupam-io / anupam_keyring_pub.asc
Last active February 15, 2022 09:33
My Public Key for Mailvelope
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: Mailvelope v4.4.1
Comment: https://www.mailvelope.com
xsFNBGIJB88BEACV3UJxikpf/B7gBIeDUUuqbQ/T8SAfctf+G3a74cZV9hLV
KkT9pyJtcKEzErE8wvOMzq8nThKVaMgHNpSzBKff0TWyyBHfBARim5Uay6dN
UcIYYp7DwQJPYARtgZQMNVB8i2r1vbNB8s54opIKCIDKntFLg9UxQ3sgcXiK
hliU/2XovqflKEzefEUv6QlJf+rC01iJN+4QoChvj2D1jCdbkaKqY5/9kKFj
cD9StpDEke4I73ay4YKxprJSMkQEORydW1naUVPCos0d000unl1m/81f1kTM
+VlcFVwyackSdLTaRrGprW43TQp//fuH18TD3pt6UTHV3kPRPBelqveYE7ot
@anupam-io
anupam-io / main.rs
Created March 24, 2022 20:53
Match statement bug
use cosmwasm_std::{from_binary, to_binary, Binary};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
enum Cars {
Audi { id: u32, number_plate: u32 },
Bmw { id: u32, number_plate: u32 },
}
#[derive(Serialize, Deserialize)]